You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
350 B
13 lines
350 B
if( KICAD_SCRIPTING_MODULES )
|
|
|
|
# build target that runs the QA tests through scripting
|
|
add_custom_target( qa
|
|
COMMAND PYTHONPATH=${CMAKE_BINARY_DIR}/pcbnew${PYTHON_QA_PATH} ${PYTHON_EXECUTABLE} test.py
|
|
|
|
COMMENT "running qa"
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
endif()
|
|
|
|
add_subdirectory( geometry )
|