##// END OF EJS Templates
Forgot to add Version number in Meson build def...
Forgot to add Version number in Meson build def Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1407:fb115035b41a
r1459:e48520d92df9 1.0.0
Show More
sciqlop_tests.cmake
11 lines | 408 B | text/x-cmake | CMakeLexer
macro(declare_test testname testexe sources libraries)
add_executable(${testexe} ${sources})
target_link_libraries(${testexe} ${libraries})
add_test(NAME ${testname} COMMAND ${testexe})
endmacro(declare_test)
macro(declare_manual_test testname testexe sources libraries)
add_executable(${testexe} ${sources})
target_link_libraries(${testexe} ${libraries})
endmacro(declare_manual_test)