##// END OF EJS Templates
Modernized CMake configuration...
Modernized CMake configuration Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1331:c1dcbf747424
r1331:c1dcbf747424
Show More
sciqlop_tests.cmake
5 lines | 221 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)