kicad/qa/CMakeLists.txt

12 lines
320 B
CMake
Raw Normal View History

2014-02-02 21:50:45 +00:00
if( KICAD_SCRIPTING_MODULES )
# build target that runs the QA tests through scripting
2014-02-02 21:50:45 +00:00
add_custom_target( qa
COMMAND PYTHONPATH=${CMAKE_BINARY_DIR}/pcbnew${PYTHON_QA_PATH} ${PYTHON_EXECUTABLE} test.py
2014-02-02 21:50:45 +00:00
COMMENT "running qa"
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)
endif()