mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-23 10:07:59 +02:00
step one project reorganization
This commit is contained in:
26
slsSupportLib/tests/CMakeLists.txt
Normal file
26
slsSupportLib/tests/CMakeLists.txt
Normal file
@ -0,0 +1,26 @@
|
||||
|
||||
|
||||
include_directories(
|
||||
${PROJECT_SOURCE_DIR}/catch
|
||||
../include
|
||||
)
|
||||
|
||||
set(SOURCES
|
||||
test.cpp
|
||||
test-CmdLineParser.cpp
|
||||
test-container_utils.cpp
|
||||
test-string_utils.cpp
|
||||
test-Timer.cpp
|
||||
)
|
||||
|
||||
add_executable(testSlsSupportLib ${SOURCES})
|
||||
target_link_libraries(testSlsSupportLib
|
||||
slsSupportLib
|
||||
pthread
|
||||
rt
|
||||
)
|
||||
set_target_properties(testSlsSupportLib PROPERTIES
|
||||
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin
|
||||
)
|
||||
#TODO! Move to automatic test discovery
|
||||
add_test(test-slsSupportLib ${CMAKE_BINARY_DIR}/bin/testSlsSupportLib)
|
Reference in New Issue
Block a user