mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-15 12:28:22 +01:00
12 lines
227 B
CMake
12 lines
227 B
CMake
file(GLOB test_SRC
|
|
CONFIGURE_DEPENDS
|
|
"*.cpp" "*.c")
|
|
|
|
add_executable(testPOET ${test_SRC})
|
|
target_link_libraries(testPOET doctest poet_lib)
|
|
|
|
add_custom_target(check
|
|
COMMAND $<TARGET_FILE:testPOET>
|
|
DEPENDS testPOET
|
|
)
|