##// END OF EJS Templates
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop...
Some progress on new Catalogue GUI, can display most of items, still lack edition and link to SciQLop Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

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