##// END OF EJS Templates
Started PySide2 migration, builds with CMake and produces a working binary...
Started PySide2 migration, builds with CMake and produces a working binary Need to port all previous stuff from Pybind11 to PySide2/shboken Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

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