QA: fix paths in CMakeLists.txt after QA paths changes
This commit is contained in:
parent
8382740cb7
commit
eac1ab3d1f
|
@ -30,34 +30,34 @@ add_definitions(-DBOOST_TEST_DYN_LINK -DPCBNEW -DDRC_PROTO -DTEST_APP_NO_MAIN)
|
||||||
add_executable( drc_proto
|
add_executable( drc_proto
|
||||||
drc_proto_test.cpp
|
drc_proto_test.cpp
|
||||||
drc_proto.cpp
|
drc_proto.cpp
|
||||||
../../pcbnew/drc/drc_rule.cpp
|
../../../pcbnew/drc/drc_rule.cpp
|
||||||
../../pcbnew/drc/drc_rule_condition.cpp
|
../../../pcbnew/drc/drc_rule_condition.cpp
|
||||||
../../pcbnew/drc/drc_rule_parser.cpp
|
../../../pcbnew/drc/drc_rule_parser.cpp
|
||||||
../../pcbnew/drc/drc_test_provider.cpp
|
../../../pcbnew/drc/drc_test_provider.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_copper_clearance.cpp
|
../../../pcbnew/drc/drc_test_provider_copper_clearance.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_hole_to_hole.cpp
|
../../../pcbnew/drc/drc_test_provider_hole_to_hole.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_edge_clearance.cpp
|
../../../pcbnew/drc/drc_test_provider_edge_clearance.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_hole_size.cpp
|
../../../pcbnew/drc/drc_test_provider_hole_size.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_disallow.cpp
|
../../../pcbnew/drc/drc_test_provider_disallow.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_track_width.cpp
|
../../../pcbnew/drc/drc_test_provider_track_width.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_annular_width.cpp
|
../../../pcbnew/drc/drc_test_provider_annular_width.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_connectivity.cpp
|
../../../pcbnew/drc/drc_test_provider_connectivity.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_courtyard_clearance.cpp
|
../../../pcbnew/drc/drc_test_provider_courtyard_clearance.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_via_diameter.cpp
|
../../../pcbnew/drc/drc_test_provider_via_diameter.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_schematic_parity.cpp
|
../../../pcbnew/drc/drc_test_provider_schematic_parity.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_misc.cpp
|
../../../pcbnew/drc/drc_test_provider_misc.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_solder_mask.cpp
|
../../../pcbnew/drc/drc_test_provider_solder_mask.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_silk_clearance.cpp
|
../../../pcbnew/drc/drc_test_provider_silk_clearance.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_matched_length.cpp
|
../../../pcbnew/drc/drc_test_provider_matched_length.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_diff_pair_coupling.cpp
|
../../../pcbnew/drc/drc_test_provider_diff_pair_coupling.cpp
|
||||||
../../pcbnew/drc/drc_engine.cpp
|
../../../pcbnew/drc/drc_engine.cpp
|
||||||
../../pcbnew/drc/drc_item.cpp
|
../../../pcbnew/drc/drc_item.cpp
|
||||||
../qa_utils/mocks.cpp
|
../../qa_utils/mocks.cpp
|
||||||
../pcbnew_utils/board_file_utils.cpp
|
../../pcbnew_utils/board_file_utils.cpp
|
||||||
../qa_utils/test_app_main.cpp
|
../../qa_utils/test_app_main.cpp
|
||||||
../qa_utils/utility_program.cpp
|
../../qa_utils/utility_program.cpp
|
||||||
../qa_utils/stdstream_line_reader.cpp
|
../../qa_utils/stdstream_line_reader.cpp
|
||||||
../../common/base_units.cpp
|
../../../common/base_units.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
add_dependencies( drc_proto pnsrouter pcbcommon ${PCBNEW_IO_LIBRARIES} )
|
add_dependencies( drc_proto pnsrouter pcbcommon ${PCBNEW_IO_LIBRARIES} )
|
||||||
|
|
|
@ -29,39 +29,39 @@ add_definitions(-DBOOST_TEST_DYN_LINK -DPCBNEW -DTEST_APP_GUI)
|
||||||
|
|
||||||
|
|
||||||
add_executable( test_pns
|
add_executable( test_pns
|
||||||
../../pcbnew/drc/drc_rule.cpp
|
../../../pcbnew/drc/drc_rule.cpp
|
||||||
../../pcbnew/drc/drc_rule_condition.cpp
|
../../../pcbnew/drc/drc_rule_condition.cpp
|
||||||
../../pcbnew/drc/drc_rule_parser.cpp
|
../../../pcbnew/drc/drc_rule_parser.cpp
|
||||||
../../pcbnew/drc/drc_test_provider.cpp
|
../../../pcbnew/drc/drc_test_provider.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_copper_clearance.cpp
|
../../../pcbnew/drc/drc_test_provider_copper_clearance.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_hole_to_hole.cpp
|
../../../pcbnew/drc/drc_test_provider_hole_to_hole.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_edge_clearance.cpp
|
../../../pcbnew/drc/drc_test_provider_edge_clearance.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_hole_size.cpp
|
../../../pcbnew/drc/drc_test_provider_hole_size.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_disallow.cpp
|
../../../pcbnew/drc/drc_test_provider_disallow.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_track_width.cpp
|
../../../pcbnew/drc/drc_test_provider_track_width.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_annular_width.cpp
|
../../../pcbnew/drc/drc_test_provider_annular_width.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_connectivity.cpp
|
../../../pcbnew/drc/drc_test_provider_connectivity.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_courtyard_clearance.cpp
|
../../../pcbnew/drc/drc_test_provider_courtyard_clearance.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_via_diameter.cpp
|
../../../pcbnew/drc/drc_test_provider_via_diameter.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_schematic_parity.cpp
|
../../../pcbnew/drc/drc_test_provider_schematic_parity.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_misc.cpp
|
../../../pcbnew/drc/drc_test_provider_misc.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_solder_mask.cpp
|
../../../pcbnew/drc/drc_test_provider_solder_mask.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_silk_clearance.cpp
|
../../../pcbnew/drc/drc_test_provider_silk_clearance.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_matched_length.cpp
|
../../../pcbnew/drc/drc_test_provider_matched_length.cpp
|
||||||
../../pcbnew/drc/drc_test_provider_diff_pair_coupling.cpp
|
../../../pcbnew/drc/drc_test_provider_diff_pair_coupling.cpp
|
||||||
../../pcbnew/drc/drc_engine.cpp
|
../../../pcbnew/drc/drc_engine.cpp
|
||||||
../../pcbnew/drc/drc_item.cpp
|
../../../pcbnew/drc/drc_item.cpp
|
||||||
pns_log_file.cpp
|
pns_log_file.cpp
|
||||||
pns_log_player.cpp
|
pns_log_player.cpp
|
||||||
pns_test_debug_decorator.cpp
|
pns_test_debug_decorator.cpp
|
||||||
pns_log_viewer_frame.cpp
|
pns_log_viewer_frame.cpp
|
||||||
pns_log_viewer_frame_base.cpp
|
pns_log_viewer_frame_base.cpp
|
||||||
label_manager.cpp
|
label_manager.cpp
|
||||||
../qa_utils/pcb_test_frame.cpp
|
../../qa_utils/pcb_test_frame.cpp
|
||||||
../qa_utils/test_app_main.cpp
|
../../qa_utils/test_app_main.cpp
|
||||||
../qa_utils/utility_program.cpp
|
../../qa_utils/utility_program.cpp
|
||||||
../qa_utils/mocks.cpp
|
../../qa_utils/mocks.cpp
|
||||||
../../common/base_units.cpp
|
../../../common/base_units.cpp
|
||||||
playground.cpp
|
playground.cpp
|
||||||
main.cpp
|
main.cpp
|
||||||
)
|
)
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
#include <pcbnew/plugins/kicad/pcb_plugin.h>
|
#include <pcbnew/plugins/kicad/pcb_plugin.h>
|
||||||
#include <pcbnew/drc/drc_engine.h>
|
#include <pcbnew/drc/drc_engine.h>
|
||||||
|
|
||||||
#include <console_log.h>
|
#include <../../unittests/common/console_log.h>
|
||||||
|
|
||||||
BOARD_CONNECTED_ITEM* PNS_LOG_FILE::ItemById( const PNS_LOG_FILE::EVENT_ENTRY& evt )
|
BOARD_CONNECTED_ITEM* PNS_LOG_FILE::ItemById( const PNS_LOG_FILE::EVENT_ENTRY& evt )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue