##// END OF EJS Templates
Converted catalogue gui tests to manual tests...
Converted catalogue gui tests to manual tests Few GPLv3 headers + Repositories Tree View Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1407:fb115035b41a
r1407:fb115035b41a
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)