Adding a CMake file, just for fun.

This commit is contained in:
Elf M. Sternberg 2016-10-05 20:24:09 -07:00
parent 2d27f2865c
commit 0989df258e
1 changed files with 14 additions and 0 deletions

14
CMakeLists.txt Normal file
View File

@ -0,0 +1,14 @@
project("Cheap GMP")
list(APPEND CMAKE_CXX_FLAGS "-std=c++11 ${CMAKE_CXX_FLAGS} -g -ftest-coverage -fprofile-arcs")
add_executable(cheapgmp
src/cheapgmp.cpp
src/accessories.cpp
src/main.cpp)
add_executable(gmpcmd
src/cheapgmp.cpp
src/accessories.cpp
src/cmd.cpp)