1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
matabstrix/CMakeLists.txt

7 lines
206 B
CMake

cmake_minimum_required (VERSION 3.0)
project (Matabstrix)
add_definitions ("-std=c++14 -Wall -Wextra")
file (GLOB sources *.cpp)
add_executable (matabstrix ${sources})
set (CMAKE_EXECUTABLE_SUFFIX ".html")