10 lines
138 B
CMake
10 lines
138 B
CMake
set(TARGET_NAME run_tests)
|
|
|
|
|
|
# add test sources here ...
|
|
add_executable(${TARGET_NAME}
|
|
|
|
../lib/fischl.cpp
|
|
testfischl.cpp
|
|
|
|
) |