31 lines
766 B
CMake
31 lines
766 B
CMake
if( KICAD_SCRIPTING_MODULES )
|
|
|
|
# Test that runs the QA tests through scripting
|
|
add_test( NAME qa_python
|
|
COMMAND ${PYTHON_EXECUTABLE} test.py
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
set_property( TEST qa_python
|
|
PROPERTY ENVIRONMENT "PYTHONPATH=${CMAKE_BINARY_DIR}/pcbnew${PYTHON_QA_PATH}"
|
|
)
|
|
|
|
endif()
|
|
|
|
# Shared QA helper libraries
|
|
add_subdirectory( qa_utils )
|
|
add_subdirectory( pcbnew_utils )
|
|
add_subdirectory( unit_test_utils )
|
|
|
|
# Unit tests
|
|
add_subdirectory( common )
|
|
add_subdirectory( pcbnew )
|
|
add_subdirectory( eeschema )
|
|
|
|
# Utility/debugging/profiling programs
|
|
add_subdirectory( common_tools )
|
|
add_subdirectory( pcbnew_tools )
|
|
|
|
# add_subdirectory( pcb_test_window )
|
|
add_subdirectory( gal/gal_pixel_alignment )
|