##// 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
/ cmake / sciqlop_tests.cmake
Modernized CMake configuration...
r1331 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)
Converted catalogue gui tests to manual tests...
r1407
macro(declare_manual_test testname testexe sources libraries)
add_executable(${testexe} ${sources})
target_link_libraries(${testexe} ${libraries})
endmacro(declare_manual_test)