first import
This commit is contained in:
commit
e30a6b3e85
5 changed files with 293 additions and 0 deletions
14
tests/CMakeLists.txt
Normal file
14
tests/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
|
||||
function(add_simple_test tname)
|
||||
add_executable(${tname} ${tname}.cpp)
|
||||
add_test(NAME ${tname} COMMAND ${tname})
|
||||
endfunction()
|
||||
|
||||
file(GLOB sources "${CMAKE_CURRENT_SOURCE_DIR}/*.cpp")
|
||||
|
||||
foreach(filename ${sources})
|
||||
# File name without directory or longest extension
|
||||
get_filename_component(name ${filename} NAME_WE)
|
||||
add_simple_test(${name})
|
||||
endforeach()
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue