first import

This commit is contained in:
Johann Dreo 2020-08-23 11:11:15 +02:00
commit e30a6b3e85
5 changed files with 293 additions and 0 deletions

14
tests/CMakeLists.txt Normal file
View 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()