Blame testing/CMakeLists.txt

Packit Service 50c9f2
add_custom_target(tests
Packit Service 50c9f2
         COMMENT "Running doxygen tests..."
Packit Service 50c9f2
         COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/testing/runtests.py --all --doxygen ${PROJECT_BINARY_DIR}/bin/doxygen --inputdir ${CMAKE_SOURCE_DIR}/testing --outputdir ${PROJECT_BINARY_DIR}/testing
Packit Service 50c9f2
         DEPENDS doxygen
Packit Service 50c9f2
)
Packit Service 50c9f2
add_test(NAME suite
Packit Service 50c9f2
         COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/testing/runtests.py --all --doxygen $<TARGET_FILE:doxygen> --inputdir ${CMAKE_SOURCE_DIR}/testing --outputdir ${PROJECT_BINARY_DIR}/testing
Packit Service 50c9f2
)
Packit Service 50c9f2