recovered CMakeLists

This commit is contained in:
FactorialN 2023-10-29 15:56:52 -07:00
parent 32614265f6
commit c9407907e3
3 changed files with 31 additions and 1 deletions

20
CMakeLists.txt Normal file
View File

@ -0,0 +1,20 @@
cmake_minimum_required (VERSION 3.1.0)
project(fischl)
set(CMAKE_CXX_STANDARD 14)
include_directories(
# fischl include files
${CMAKE_CURRENT_SOURCE_DIR}/include
)
add_executable(fischl
# Header filesc
lib/fischl.cpp
lib/main.cpp
)
enable_testing()
add_subdirectory(test)

10
test/CMakeLists.txt Normal file
View File

@ -0,0 +1,10 @@
set(TARGET_NAME run_tests)
# add test sources here ...
add_executable(${TARGET_NAME}
../lib/fischl.cpp
testfischl.cpp
)