2017-01-25 19:57:54 +00:00
|
|
|
|
|
|
|
if( UNIX AND NOT APPLE )
|
|
|
|
# Setting this ON slows down linking and is a advanced (=hidden) developer option for
|
|
|
|
# linux, not a user option.
|
|
|
|
option( PCBNEW_LINK_MAPS
|
|
|
|
"Developer: create linker map files for pcbnew binaries, not typical for Debug builds"
|
|
|
|
)
|
|
|
|
mark_as_advanced( PCBNEW_LINK_MAPS )
|
|
|
|
endif()
|
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
add_definitions( -DPCBNEW )
|
2016-02-29 19:08:03 +00:00
|
|
|
|
2018-10-12 06:17:15 +00:00
|
|
|
add_subdirectory(connectivity)
|
|
|
|
|
2013-09-10 17:26:44 +00:00
|
|
|
add_subdirectory(router)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2014-02-27 22:56:16 +00:00
|
|
|
# psnrouter depends on make_lexer outputs in common (bug # 1285878 )
|
|
|
|
add_dependencies( pnsrouter pcbcommon )
|
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
if( KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES )
|
2016-09-27 14:50:22 +00:00
|
|
|
file( MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/swig )
|
2016-06-10 18:08:35 +00:00
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
# Infrequently needed headers go at end of search paths, append to INC_AFTER
|
2016-09-20 15:59:43 +00:00
|
|
|
set( INC_AFTER ${INC_AFTER} swig )
|
|
|
|
set( INC_AFTER ${INC_AFTER} ../common/swig )
|
2013-08-20 18:03:21 +00:00
|
|
|
|
|
|
|
#message( STATUS "pcbnew INC_AFTER:${INC_AFTER}" )
|
|
|
|
endif()
|
2012-07-22 12:15:38 +00:00
|
|
|
|
2012-02-28 21:30:46 +00:00
|
|
|
|
2015-08-20 07:14:44 +00:00
|
|
|
if( BUILD_GITHUB_PLUGIN )
|
|
|
|
set( GITHUB_3DLIBRARIES_WIZARD
|
2017-01-25 19:57:54 +00:00
|
|
|
dialogs/wizard_3DShape_Libs_downloader_base.cpp
|
|
|
|
dialogs/wizard_3DShape_Libs_downloader.cpp
|
|
|
|
)
|
2015-08-20 07:14:44 +00:00
|
|
|
endif()
|
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
include_directories( BEFORE ${INC_BEFORE} )
|
2012-01-23 04:33:36 +00:00
|
|
|
include_directories(
|
2018-08-03 12:27:03 +00:00
|
|
|
../include/legacy_wx
|
2012-01-23 04:33:36 +00:00
|
|
|
./dialogs
|
2012-06-05 19:07:33 +00:00
|
|
|
./autorouter
|
2012-01-23 04:33:36 +00:00
|
|
|
../3d-viewer
|
|
|
|
../common
|
|
|
|
../common/dialogs
|
2014-01-07 20:41:32 +00:00
|
|
|
./exporters
|
2018-07-07 11:04:01 +00:00
|
|
|
../dxflib_qcad
|
2014-06-05 18:37:04 +00:00
|
|
|
../utils/idftools
|
2015-12-10 19:20:35 +00:00
|
|
|
${GLM_INCLUDE_DIR}
|
2018-01-29 17:09:18 +00:00
|
|
|
./specctra_import_export
|
2012-01-23 04:33:36 +00:00
|
|
|
${INC_AFTER}
|
|
|
|
)
|
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
set( PCBNEW_DIALOGS
|
2017-02-07 05:22:17 +00:00
|
|
|
dialogs/dialog_block_options.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
dialogs/dialog_block_options_base.cpp
|
2018-04-28 15:22:25 +00:00
|
|
|
dialogs/dialog_board_setup.cpp
|
2018-07-29 00:11:39 +00:00
|
|
|
dialogs/dialog_choose_footprint.cpp
|
2010-11-21 18:28:32 +00:00
|
|
|
dialogs/dialog_cleaning_options.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
dialogs/dialog_cleaning_options_base.cpp
|
2010-11-24 20:37:00 +00:00
|
|
|
dialogs/dialog_copper_zones.cpp
|
|
|
|
dialogs/dialog_copper_zones_base.cpp
|
2015-02-12 03:22:24 +00:00
|
|
|
dialogs/dialog_create_array.cpp
|
|
|
|
dialogs/dialog_create_array_base.cpp
|
2018-06-06 10:05:56 +00:00
|
|
|
dialogs/dialog_drc.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
dialogs/dialog_drc_base.cpp
|
2018-02-16 16:06:06 +00:00
|
|
|
dialogs/dialog_edit_footprint_for_BoardEditor.cpp
|
|
|
|
dialogs/dialog_edit_footprint_for_BoardEditor_base.cpp
|
2018-02-16 19:26:55 +00:00
|
|
|
dialogs/dialog_edit_footprint_for_fp_editor.cpp
|
|
|
|
dialogs/dialog_edit_footprint_for_fp_editor_base.cpp
|
2014-07-09 13:10:32 +00:00
|
|
|
dialogs/dialog_enum_pads.cpp
|
|
|
|
dialogs/dialog_enum_pads_base.cpp
|
2018-02-16 16:06:06 +00:00
|
|
|
dialogs/dialog_exchange_footprints.cpp
|
|
|
|
dialogs/dialog_exchange_footprints_base.cpp
|
2014-01-02 09:26:03 +00:00
|
|
|
dialogs/dialog_export_idf.cpp
|
|
|
|
dialogs/dialog_export_idf_base.cpp
|
2016-09-19 07:40:36 +00:00
|
|
|
dialogs/dialog_export_step.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
dialogs/dialog_export_step_base.cpp
|
2018-06-13 12:20:29 +00:00
|
|
|
dialogs/dialog_export_svg.cpp
|
|
|
|
dialogs/dialog_export_svg_base.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
dialogs/dialog_export_vrml.cpp
|
|
|
|
dialogs/dialog_export_vrml_base.cpp
|
2012-05-28 20:01:51 +00:00
|
|
|
dialogs/dialog_find.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
dialogs/dialog_find_base.cpp
|
|
|
|
dialogs/dialog_footprint_wizard_list.cpp
|
|
|
|
dialogs/dialog_footprint_wizard_list_base.cpp
|
2018-09-11 15:28:57 +00:00
|
|
|
dialogs/dialog_fp_browser_display_options.cpp
|
|
|
|
dialogs/dialog_fp_browser_display_options_base.cpp
|
2013-10-13 21:33:58 +00:00
|
|
|
dialogs/dialog_fp_plugin_options.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
dialogs/dialog_fp_plugin_options_base.cpp
|
2018-02-16 16:06:06 +00:00
|
|
|
dialogs/dialog_gen_footprint_position_file_base.cpp
|
2017-10-04 09:57:59 +00:00
|
|
|
dialogs/dialog_gencad_export_options.cpp
|
2010-11-24 15:10:33 +00:00
|
|
|
dialogs/dialog_gendrill.cpp
|
|
|
|
dialogs/dialog_gendrill_base.cpp
|
2015-12-20 18:47:52 +00:00
|
|
|
dialogs/dialog_get_footprint_by_name_base.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
dialogs/dialog_global_deletion.cpp
|
|
|
|
dialogs/dialog_global_deletion_base.cpp
|
2010-11-26 17:47:35 +00:00
|
|
|
dialogs/dialog_global_edit_tracks_and_vias.cpp
|
|
|
|
dialogs/dialog_global_edit_tracks_and_vias_base.cpp
|
2018-04-28 15:22:25 +00:00
|
|
|
dialogs/dialog_global_edit_text_and_graphics.cpp
|
|
|
|
dialogs/dialog_global_edit_text_and_graphics_base.cpp
|
2019-01-20 18:51:07 +00:00
|
|
|
dialogs/dialog_global_fp_lib_table_config.cpp
|
2018-07-05 16:14:19 +00:00
|
|
|
dialogs/dialog_push_pad_properties.cpp
|
|
|
|
dialogs/dialog_push_pad_properties_base.cpp
|
2010-11-26 11:55:34 +00:00
|
|
|
dialogs/dialog_graphic_item_properties.cpp
|
|
|
|
dialogs/dialog_graphic_item_properties_base.cpp
|
2018-04-28 15:22:25 +00:00
|
|
|
dialogs/dialog_import_settings.cpp
|
|
|
|
dialogs/dialog_import_settings_base.cpp
|
2012-07-13 18:55:29 +00:00
|
|
|
dialogs/dialog_keepout_area_properties.cpp
|
|
|
|
dialogs/dialog_keepout_area_properties_base.cpp
|
2013-08-30 19:28:31 +00:00
|
|
|
dialogs/dialog_layer_selection_base.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
dialogs/dialog_move_exact.cpp
|
|
|
|
dialogs/dialog_move_exact_base.cpp
|
2010-11-26 17:47:35 +00:00
|
|
|
dialogs/dialog_netlist.cpp
|
2018-03-18 21:37:27 +00:00
|
|
|
dialogs/dialog_netlist_base.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
dialogs/dialog_non_copper_zones_properties.cpp
|
|
|
|
dialogs/dialog_non_copper_zones_properties_base.cpp
|
|
|
|
dialogs/dialog_pad_basicshapes_properties.cpp
|
|
|
|
dialogs/dialog_pad_properties.cpp
|
|
|
|
dialogs/dialog_pad_properties_base.cpp
|
|
|
|
dialogs/dialog_plot.cpp
|
|
|
|
dialogs/dialog_plot_base.cpp
|
2015-02-18 00:29:54 +00:00
|
|
|
dialogs/dialog_pns_diff_pair_dimensions.cpp
|
|
|
|
dialogs/dialog_pns_diff_pair_dimensions_base.cpp
|
|
|
|
dialogs/dialog_pns_length_tuning_settings.cpp
|
|
|
|
dialogs/dialog_pns_length_tuning_settings_base.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
dialogs/dialog_pns_settings.cpp
|
|
|
|
dialogs/dialog_pns_settings_base.cpp
|
2017-05-10 13:55:03 +00:00
|
|
|
dialogs/dialog_position_relative.cpp
|
|
|
|
dialogs/dialog_position_relative_base.cpp
|
2018-10-03 07:50:05 +00:00
|
|
|
dialogs/dialog_print_pcbnew.cpp
|
2016-03-16 14:14:00 +00:00
|
|
|
dialogs/dialog_select_net_from_list.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
dialogs/dialog_select_net_from_list_base.cpp
|
2013-06-05 14:24:03 +00:00
|
|
|
dialogs/dialog_set_grid.cpp
|
2010-11-24 20:37:00 +00:00
|
|
|
dialogs/dialog_set_grid_base.cpp
|
2018-07-04 12:28:48 +00:00
|
|
|
dialogs/dialog_swap_layers.cpp
|
|
|
|
dialogs/dialog_swap_layers_base.cpp
|
2013-08-28 16:14:39 +00:00
|
|
|
dialogs/dialog_target_properties_base.cpp
|
2018-06-06 10:05:56 +00:00
|
|
|
dialogs/dialog_text_properties.cpp
|
|
|
|
dialogs/dialog_text_properties_base.cpp
|
2015-07-09 11:35:51 +00:00
|
|
|
dialogs/dialog_track_via_properties.cpp
|
|
|
|
dialogs/dialog_track_via_properties_base.cpp
|
2014-05-14 14:28:39 +00:00
|
|
|
dialogs/dialog_track_via_size.cpp
|
|
|
|
dialogs/dialog_track_via_size_base.cpp
|
2016-01-29 10:24:39 +00:00
|
|
|
dialogs/dialog_update_pcb.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
dialogs/dialog_update_pcb_base.cpp
|
2018-07-20 17:46:56 +00:00
|
|
|
dialogs/panel_fp_lib_table.cpp
|
|
|
|
dialogs/panel_fp_lib_table_base.cpp
|
2018-05-14 17:34:18 +00:00
|
|
|
dialogs/panel_modedit_defaults.cpp
|
|
|
|
dialogs/panel_modedit_defaults_base.cpp
|
|
|
|
dialogs/panel_modedit_display_options.cpp
|
|
|
|
dialogs/panel_modedit_settings.cpp
|
|
|
|
dialogs/panel_modedit_settings_base.cpp
|
|
|
|
dialogs/panel_pcbnew_display_options.cpp
|
|
|
|
dialogs/panel_pcbnew_display_options_base.cpp
|
|
|
|
dialogs/panel_pcbnew_settings.cpp
|
|
|
|
dialogs/panel_pcbnew_settings_base.cpp
|
2018-04-28 15:22:25 +00:00
|
|
|
dialogs/panel_setup_mask_and_paste.cpp
|
|
|
|
dialogs/panel_setup_mask_and_paste_base.cpp
|
|
|
|
dialogs/panel_setup_feature_constraints.cpp
|
|
|
|
dialogs/panel_setup_feature_constraints_base.cpp
|
|
|
|
dialogs/panel_setup_layers.cpp
|
|
|
|
dialogs/panel_setup_layers_base.cpp
|
|
|
|
dialogs/panel_setup_netclasses.cpp
|
|
|
|
dialogs/panel_setup_netclasses_base.cpp
|
|
|
|
dialogs/panel_setup_text_and_graphics.cpp
|
|
|
|
dialogs/panel_setup_text_and_graphics_base.cpp
|
2018-07-17 06:52:33 +00:00
|
|
|
dialogs/panel_setup_tracks_and_vias.cpp
|
|
|
|
dialogs/panel_setup_tracks_and_vias_base.cpp
|
2012-05-09 17:37:25 +00:00
|
|
|
footprint_wizard.cpp
|
|
|
|
footprint_wizard_frame.cpp
|
2018-01-30 19:23:06 +00:00
|
|
|
footprint_wizard_frame_functions.cpp
|
2015-08-20 07:14:44 +00:00
|
|
|
${GITHUB_3DLIBRARIES_WIZARD}
|
2010-11-24 15:10:33 +00:00
|
|
|
)
|
|
|
|
|
2018-08-15 09:26:32 +00:00
|
|
|
if( KICAD_SCRIPTING AND KICAD_SCRIPTING_ACTION_MENU )
|
|
|
|
set( PCBNEW_DIALOGS ${PCBNEW_DIALOGS}
|
|
|
|
dialogs/panel_pcbnew_action_plugins.cpp
|
|
|
|
dialogs/panel_pcbnew_action_plugins_base.cpp
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2018-10-13 18:37:28 +00:00
|
|
|
set( PCBNEW_IMPORT_GFX
|
|
|
|
import_gfx/dialog_import_gfx_base.cpp
|
|
|
|
import_gfx/dialog_import_gfx.cpp
|
|
|
|
import_gfx/graphics_import_mgr.cpp
|
|
|
|
import_gfx/graphics_importer.cpp
|
|
|
|
import_gfx/graphics_importer_pcbnew.cpp
|
|
|
|
import_gfx/graphics_importer_buffer.cpp
|
|
|
|
import_gfx/dxf_import_plugin.cpp
|
|
|
|
import_gfx/svg_import_plugin.cpp
|
|
|
|
import_gfx/nanosvg.cpp
|
|
|
|
)
|
2013-10-24 16:44:38 +00:00
|
|
|
|
2014-01-07 20:41:32 +00:00
|
|
|
set( PCBNEW_EXPORTERS
|
|
|
|
exporters/export_d356.cpp
|
2018-04-18 09:31:33 +00:00
|
|
|
exporters/export_footprint_associations.cpp
|
2014-01-07 20:41:32 +00:00
|
|
|
exporters/export_gencad.cpp
|
|
|
|
exporters/export_idf.cpp
|
|
|
|
exporters/export_vrml.cpp
|
|
|
|
exporters/gen_drill_report_files.cpp
|
2018-02-16 16:06:06 +00:00
|
|
|
exporters/gen_footprints_placefile.cpp
|
2014-01-07 20:41:32 +00:00
|
|
|
exporters/gendrill_Excellon_writer.cpp
|
2017-04-28 10:53:30 +00:00
|
|
|
exporters/gendrill_file_writer_base.cpp
|
|
|
|
exporters/gendrill_gerber_writer.cpp
|
2017-08-19 16:28:11 +00:00
|
|
|
exporters/gerber_jobfile_writer.cpp
|
2014-01-07 20:41:32 +00:00
|
|
|
)
|
|
|
|
|
2017-02-23 08:00:37 +00:00
|
|
|
set( PCBNEW_MICROWAVE_SRCS
|
|
|
|
microwave/microwave_inductor.cpp
|
|
|
|
)
|
|
|
|
|
2019-01-11 13:21:38 +00:00
|
|
|
set( PCBNEW_DRC_SRCS
|
2019-01-11 22:03:45 +00:00
|
|
|
drc/courtyard_overlap.cpp
|
2019-01-11 13:21:38 +00:00
|
|
|
drc/drc_marker_factory.cpp
|
2019-01-11 22:03:45 +00:00
|
|
|
drc/drc_provider.cpp
|
2019-01-11 13:21:38 +00:00
|
|
|
)
|
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
set( PCBNEW_CLASS_SRCS
|
2017-12-27 16:06:27 +00:00
|
|
|
${PCBNEW_DIALOGS}
|
|
|
|
${PCBNEW_EXPORTERS}
|
2018-10-13 18:37:28 +00:00
|
|
|
${PCBNEW_IMPORT_GFX}
|
2019-01-11 13:21:38 +00:00
|
|
|
${PCBNEW_DRC_SRCS}
|
2017-12-27 16:06:27 +00:00
|
|
|
|
2017-03-22 13:51:07 +00:00
|
|
|
autorouter/rect_placement/rect_placement.cpp
|
|
|
|
autorouter/spread_footprints.cpp
|
2018-08-24 10:54:45 +00:00
|
|
|
autorouter/ar_autoplacer.cpp
|
|
|
|
autorouter/ar_matrix.cpp
|
|
|
|
autorouter/autoplacer_tool.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
|
2018-01-30 14:34:09 +00:00
|
|
|
action_plugin.cpp
|
2014-09-24 16:56:20 +00:00
|
|
|
append_board_to_current.cpp
|
2016-04-02 12:52:29 +00:00
|
|
|
array_creator.cpp
|
2019-01-25 16:00:29 +00:00
|
|
|
array_pad_name_provider.cpp
|
2010-11-24 15:10:33 +00:00
|
|
|
attribut.cpp
|
|
|
|
block.cpp
|
2018-02-16 16:06:06 +00:00
|
|
|
block_footprint_editor.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
board_netlist_updater.cpp
|
2010-11-24 15:10:33 +00:00
|
|
|
build_BOM_from_board.cpp
|
|
|
|
connect.cpp
|
|
|
|
controle.cpp
|
|
|
|
cross-probing.cpp
|
|
|
|
deltrack.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
dimension.cpp
|
2008-01-18 17:10:54 +00:00
|
|
|
dragsegm.cpp
|
|
|
|
drc.cpp
|
2010-09-20 16:21:47 +00:00
|
|
|
drc_clearance_test_functions.cpp
|
2008-01-18 17:10:54 +00:00
|
|
|
edgemod.cpp
|
|
|
|
edit.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
edit_pcb_text.cpp
|
|
|
|
edit_track_width.cpp
|
2008-01-18 17:10:54 +00:00
|
|
|
editedge.cpp
|
|
|
|
editrack-part2.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
editrack.cpp
|
2008-01-18 17:10:54 +00:00
|
|
|
edtxtmod.cpp
|
2009-10-03 17:18:08 +00:00
|
|
|
event_handlers_tracks_vias_sizes.cpp
|
2008-01-18 17:10:54 +00:00
|
|
|
files.cpp
|
2017-03-23 00:59:25 +00:00
|
|
|
footprint_info_impl.cpp
|
2018-01-30 19:23:06 +00:00
|
|
|
footprint_wizard.cpp
|
2018-01-31 16:09:26 +00:00
|
|
|
footprint_editor_utils.cpp
|
|
|
|
footprint_editor_onclick.cpp
|
|
|
|
footprint_editor_options.cpp
|
2018-07-29 15:33:58 +00:00
|
|
|
fp_tree_synchronizing_adapter.cpp
|
2018-01-31 16:09:26 +00:00
|
|
|
footprint_edit_frame.cpp
|
2018-02-01 10:05:01 +00:00
|
|
|
footprint_libraries_utils.cpp
|
2018-01-31 16:09:26 +00:00
|
|
|
footprint_viewer_frame.cpp
|
2018-07-29 00:11:39 +00:00
|
|
|
fp_tree_model_adapter.cpp
|
|
|
|
generate_footprint_info.cpp
|
2018-03-28 17:14:04 +00:00
|
|
|
grid_layer_box_helpers.cpp
|
|
|
|
grid_layer_box_helpers.h
|
2011-10-17 20:01:27 +00:00
|
|
|
highlight.cpp
|
2008-01-18 17:10:54 +00:00
|
|
|
hotkeys.cpp
|
2010-11-24 15:10:33 +00:00
|
|
|
hotkeys_board_editor.cpp
|
2018-02-16 16:06:06 +00:00
|
|
|
hotkeys_footprint_editor.cpp
|
2008-01-18 17:10:54 +00:00
|
|
|
initpcb.cpp
|
2010-01-21 07:41:30 +00:00
|
|
|
layer_widget.cpp
|
2018-02-01 10:05:01 +00:00
|
|
|
load_select_footprint.cpp
|
2009-10-10 17:27:53 +00:00
|
|
|
magnetic_tracks_functions.cpp
|
2018-02-01 10:05:01 +00:00
|
|
|
menubar_footprint_editor.cpp
|
|
|
|
menubar_pcb_editor.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
microwave.cpp
|
2011-11-07 18:04:19 +00:00
|
|
|
minimun_spanning_tree.cpp
|
2008-01-18 17:10:54 +00:00
|
|
|
move-drag_pads.cpp
|
|
|
|
move_or_drag_track.cpp
|
|
|
|
muwave_command.cpp
|
|
|
|
netlist.cpp
|
|
|
|
onleftclick.cpp
|
|
|
|
onrightclick.cpp
|
2018-07-05 16:14:19 +00:00
|
|
|
pad_edit_functions.cpp
|
2018-12-18 16:37:36 +00:00
|
|
|
pad_naming.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
pcb_base_edit_frame.cpp
|
2018-01-31 16:09:26 +00:00
|
|
|
pcb_footprint_edit_utils.cpp
|
2018-01-31 08:23:20 +00:00
|
|
|
pcb_layer_box_selector.cpp
|
|
|
|
pcb_layer_widget.cpp
|
2017-10-31 15:08:18 +00:00
|
|
|
# pcb_draw_panel_gal.cpp
|
|
|
|
# pcb_view.cpp
|
2018-01-29 20:58:58 +00:00
|
|
|
pcb_edit_frame.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
pcbnew_config.cpp
|
2018-09-19 13:06:29 +00:00
|
|
|
pcbnew_printout.cpp
|
2018-01-31 16:09:26 +00:00
|
|
|
pcb_legacy_draw_utils.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
pcbplot.cpp
|
2012-09-24 16:03:03 +00:00
|
|
|
plot_board_layers.cpp
|
|
|
|
plot_brditems_plotter.cpp
|
2008-01-18 17:10:54 +00:00
|
|
|
ratsnest.cpp
|
2018-01-29 17:09:18 +00:00
|
|
|
specctra_import_export/specctra.cpp
|
|
|
|
specctra_import_export/specctra_export.cpp
|
|
|
|
specctra_import_export/specctra_import.cpp
|
|
|
|
specctra_import_export/specctra_keywords.cpp
|
2013-08-28 16:14:39 +00:00
|
|
|
target_edit.cpp
|
2018-03-28 17:14:04 +00:00
|
|
|
text_mod_grid_table.cpp
|
2018-01-31 16:09:26 +00:00
|
|
|
tool_footprint_editor.cpp
|
2018-01-31 12:37:36 +00:00
|
|
|
tool_footprint_viewer.cpp
|
2008-01-18 17:10:54 +00:00
|
|
|
tool_onrightclick.cpp
|
2018-01-31 16:09:26 +00:00
|
|
|
tool_pcb_editor.cpp
|
2009-09-27 11:00:21 +00:00
|
|
|
toolbars_update_user_interface.cpp
|
2018-01-31 08:23:20 +00:00
|
|
|
tracks_cleaner.cpp
|
2016-05-25 09:52:43 +00:00
|
|
|
undo_redo.cpp
|
2017-11-30 16:22:45 +00:00
|
|
|
zone_filler.cpp
|
2008-01-18 17:10:54 +00:00
|
|
|
zones_by_polygon.cpp
|
2009-08-23 15:22:44 +00:00
|
|
|
zones_by_polygon_fill_functions.cpp
|
|
|
|
zones_functions_for_undo_redo.cpp
|
2008-10-02 13:24:31 +00:00
|
|
|
zones_test_and_combine_areas.cpp
|
2013-11-10 19:15:09 +00:00
|
|
|
|
2014-02-27 16:29:08 +00:00
|
|
|
tools/drawing_tool.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
tools/edit_constraints.cpp
|
|
|
|
tools/edit_points.cpp
|
2013-12-03 15:09:03 +00:00
|
|
|
tools/edit_tool.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
tools/grid_helper.cpp
|
2017-02-23 06:23:17 +00:00
|
|
|
tools/microwave_tool.cpp
|
2018-02-16 16:06:06 +00:00
|
|
|
tools/footprint_editor_tools.cpp
|
2017-01-21 21:06:18 +00:00
|
|
|
tools/pad_tool.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
tools/pcb_actions.cpp
|
|
|
|
tools/pcb_bright_box.cpp
|
|
|
|
tools/pcb_editor_control.cpp
|
|
|
|
tools/pcb_selection_conditions.cpp
|
|
|
|
tools/pcb_tool.cpp
|
|
|
|
tools/pcbnew_control.cpp
|
2015-06-18 15:51:51 +00:00
|
|
|
tools/picker_tool.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
tools/placement_tool.cpp
|
|
|
|
tools/point_editor.cpp
|
|
|
|
tools/position_relative_tool.cpp
|
2017-10-31 13:59:03 +00:00
|
|
|
tools/selection.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
tools/selection_tool.cpp
|
|
|
|
tools/tool_event_utils.cpp
|
|
|
|
tools/tools_common.cpp
|
|
|
|
tools/zone_create_helper.cpp
|
2017-11-23 16:20:27 +00:00
|
|
|
tools/zone_filler_tool.cpp
|
2017-02-19 02:39:55 +00:00
|
|
|
|
|
|
|
footprint_preview_panel.cpp
|
2018-07-29 15:33:58 +00:00
|
|
|
footprint_tree_pane.cpp
|
2008-10-02 13:24:31 +00:00
|
|
|
)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2017-02-23 08:00:37 +00:00
|
|
|
set( PCBNEW_SRCS
|
|
|
|
${PCBNEW_MICROWAVE_SRCS}
|
|
|
|
${PCBNEW_CLASS_SRCS}
|
|
|
|
${PCBNEW_DIALOGS}
|
|
|
|
)
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
|
|
|
# extra sources from common
|
2013-08-20 18:03:21 +00:00
|
|
|
set( PCBNEW_COMMON_SRCS
|
2012-04-25 19:33:24 +00:00
|
|
|
../common/dialogs/dialog_page_settings.cpp
|
|
|
|
../common/base_units.cpp
|
|
|
|
)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
set( PCBNEW_SCRIPTING_DIALOGS
|
2012-07-16 05:53:22 +00:00
|
|
|
dialogs/dialog_scripting.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
dialogs/dialog_scripting_base.cpp
|
2013-01-13 00:34:16 +00:00
|
|
|
)
|
2012-07-16 05:53:22 +00:00
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
set( PCBNEW_SCRIPTING_PYTHON_HELPERS
|
2016-09-20 15:59:43 +00:00
|
|
|
../common/swig/wx_python_helpers.cpp
|
2017-01-22 09:05:46 +00:00
|
|
|
swig/pcbnew_action_plugins.cpp
|
2017-12-27 16:06:27 +00:00
|
|
|
swig/pcbnew_footprint_wizards.cpp
|
|
|
|
swig/pcbnew_scripting_helpers.cpp
|
|
|
|
swig/python_scripting.cpp
|
2013-01-13 00:34:16 +00:00
|
|
|
)
|
2012-03-17 15:17:13 +00:00
|
|
|
|
2017-02-23 10:40:40 +00:00
|
|
|
|
2017-03-20 18:49:10 +00:00
|
|
|
# auto-generate specctra_lexer.h and specctra_keywords.cpp
|
|
|
|
make_lexer(
|
2019-06-05 05:09:54 +00:00
|
|
|
specctra_lexer_source_files
|
2018-01-29 17:09:18 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/specctra_import_export/specctra.keywords
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/specctra_import_export/specctra_lexer.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/specctra_import_export/specctra_keywords.cpp
|
2017-03-20 18:49:10 +00:00
|
|
|
DSN
|
|
|
|
|
|
|
|
# Pass header file with dependency on *_lexer.h as extra_arg
|
2018-01-29 17:09:18 +00:00
|
|
|
specctra_import_export/specctra.h
|
2017-03-20 18:49:10 +00:00
|
|
|
)
|
|
|
|
|
2017-02-23 16:04:26 +00:00
|
|
|
if( COMPILER_SUPPORTS_WSHADOW )
|
|
|
|
# .cpp files are compiled with extra ${WSHADOW_FLAGS}, but not .cxx files
|
|
|
|
set_source_files_properties(
|
|
|
|
${PCBNEW_SRCS} ${PCBNEW_COMMON_SRCS} ${PCBNEW_SCRIPTING_DIALOGS} ${PCBNEW_SCRIPTING_PYTHON_HELPERS}
|
|
|
|
PROPERTIES COMPILE_FLAGS ${WSHADOW_FLAGS}
|
|
|
|
)
|
2018-02-17 22:27:10 +00:00
|
|
|
|
|
|
|
# There is a lot of 'local variable shadowed' warnings,
|
|
|
|
# but we have no control over the generated code
|
|
|
|
set_source_files_properties( pcbnew_wrap.cxx pcbnewPYTHON_wrap.cxx
|
|
|
|
PROPERTIES COMPILE_FLAGS -Wno-shadow
|
|
|
|
)
|
2017-02-23 16:04:26 +00:00
|
|
|
endif()
|
|
|
|
|
2017-02-23 10:40:40 +00:00
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
if( KICAD_SCRIPTING )
|
|
|
|
set( PCBNEW_SCRIPTING_SRCS
|
2013-01-13 00:34:16 +00:00
|
|
|
${PCBNEW_SCRIPTING_DIALOGS}
|
2012-10-15 22:30:01 +00:00
|
|
|
pcbnew_wrap.cxx
|
|
|
|
${PCBNEW_SCRIPTING_PYTHON_HELPERS}
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
)
|
2016-10-05 12:34:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Swig generated files do not use the override specifier, therefore
|
|
|
|
# disable suggest-override warnings
|
2017-01-25 19:57:54 +00:00
|
|
|
if( COMPILER_SUPPORTS_WSUGGEST_OVERRIDE )
|
2016-10-06 13:06:42 +00:00
|
|
|
set_source_files_properties( pcbnew_wrap.cxx pcbnewPYTHON_wrap.cxx
|
2016-10-05 12:34:04 +00:00
|
|
|
PROPERTIES COMPILE_FLAGS -Wno-suggest-override
|
|
|
|
)
|
|
|
|
endif()
|
2013-08-20 18:03:21 +00:00
|
|
|
endif()
|
2012-02-28 21:30:46 +00:00
|
|
|
|
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
if( KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES )
|
|
|
|
|
|
|
|
set( SWIG_FLAGS
|
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/../include
|
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/../scripting
|
2016-09-20 15:59:43 +00:00
|
|
|
-I${CMAKE_CURRENT_SOURCE_DIR}/../common/swig
|
|
|
|
-I${WXPYTHON_SWIG_DIR}
|
2013-08-20 18:03:21 +00:00
|
|
|
)
|
2012-03-17 15:17:13 +00:00
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
if( DEBUG )
|
|
|
|
set( SWIG_FLAGS ${SWIG_FLAGS} -DDEBUG )
|
2013-01-13 00:34:16 +00:00
|
|
|
endif()
|
|
|
|
|
2012-10-15 22:30:01 +00:00
|
|
|
# collect CFLAGS , and pass them to swig later
|
|
|
|
get_directory_property( DirDefs DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} COMPILE_DEFINITIONS )
|
|
|
|
foreach( d ${DirDefs} )
|
2013-07-28 16:30:39 +00:00
|
|
|
set( SWIG_FLAGS ${SWIG_FLAGS} -D${d} )
|
2012-10-15 22:30:01 +00:00
|
|
|
endforeach()
|
2012-07-16 14:48:51 +00:00
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
endif()
|
2012-07-16 14:48:51 +00:00
|
|
|
|
2013-07-28 16:30:39 +00:00
|
|
|
|
2017-01-25 19:57:54 +00:00
|
|
|
if( KICAD_SCRIPTING ) # Generate pcbnew.py and pcbnew_wrap.cxx using swig
|
|
|
|
|
|
|
|
# We deliberately do not use the CMake support for swig here,
|
2018-02-16 16:06:06 +00:00
|
|
|
# i.e. swig_add_footprint()) because we want full control.
|
2012-08-04 09:43:27 +00:00
|
|
|
|
2020-09-16 00:07:07 +00:00
|
|
|
set( SWIG_OPTS -python -c++ -nothreads -outdir ${CMAKE_CURRENT_BINARY_DIR} ${SWIG_FLAGS} )
|
2013-01-13 00:34:16 +00:00
|
|
|
|
2013-09-20 17:01:21 +00:00
|
|
|
if( EXISTS ${CMAKE_CURRENT_BINARY_DIR}/doxygen-xml )
|
|
|
|
set( SWIG_OPTS ${SWIG_OPTS} -DENABLE_DOCSTRINGS_FROM_DOXYGEN )
|
|
|
|
set( SWIG_OPTS ${SWIG_OPTS} -I${CMAKE_CURRENT_BINARY_DIR}/docstrings )
|
|
|
|
endif()
|
|
|
|
|
2013-01-13 00:34:16 +00:00
|
|
|
add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/pcbnew_wrap.cxx
|
2013-09-20 17:01:21 +00:00
|
|
|
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/pcbnew.py
|
2013-09-23 15:19:39 +00:00
|
|
|
|
2013-03-18 19:36:07 +00:00
|
|
|
DEPENDS pcbcommon
|
2015-04-27 19:27:59 +00:00
|
|
|
DEPENDS plotcontroller.h
|
2015-04-29 15:37:37 +00:00
|
|
|
DEPENDS exporters/gendrill_Excellon_writer.h
|
2016-09-20 15:59:43 +00:00
|
|
|
DEPENDS swig/pcbnew.i
|
|
|
|
DEPENDS swig/board.i
|
2017-01-25 19:57:54 +00:00
|
|
|
DEPENDS swig/board_connected_item.i
|
|
|
|
DEPENDS swig/board_design_settings.i
|
2016-09-20 15:59:43 +00:00
|
|
|
DEPENDS swig/board_item.i
|
2016-09-21 01:07:41 +00:00
|
|
|
DEPENDS swig/board_item_container.i
|
2017-11-15 13:16:21 +00:00
|
|
|
DEPENDS swig/connectivity.i
|
2016-09-21 01:07:41 +00:00
|
|
|
DEPENDS swig/dimension.i
|
|
|
|
DEPENDS swig/drawsegment.i
|
|
|
|
DEPENDS swig/edge_mod.i
|
|
|
|
DEPENDS swig/marker_pcb.i
|
2017-10-31 15:38:10 +00:00
|
|
|
DEPENDS swig/pcb_target.i
|
2018-12-08 17:30:35 +00:00
|
|
|
DEPENDS swig/pcb_plot_params.i
|
2018-02-16 16:06:06 +00:00
|
|
|
DEPENDS swig/footprint.i
|
2016-09-21 01:07:41 +00:00
|
|
|
DEPENDS swig/netclass.i
|
|
|
|
DEPENDS swig/netinfo.i
|
|
|
|
DEPENDS swig/pad.i
|
|
|
|
DEPENDS swig/pcb_text.i
|
2016-09-20 15:59:43 +00:00
|
|
|
DEPENDS swig/plugins.i
|
2016-09-21 01:07:41 +00:00
|
|
|
DEPENDS swig/text_mod.i
|
|
|
|
DEPENDS swig/track.i
|
2016-09-20 15:59:43 +00:00
|
|
|
DEPENDS swig/units.i
|
2017-11-15 13:16:21 +00:00
|
|
|
DEPENDS swig/typeinfo.i
|
2016-09-21 01:07:41 +00:00
|
|
|
DEPENDS swig/zone.i
|
2017-01-25 19:57:54 +00:00
|
|
|
DEPENDS swig/zone_settings.i
|
2016-09-21 01:07:41 +00:00
|
|
|
|
2016-09-20 15:59:43 +00:00
|
|
|
DEPENDS ../common/swig/dlist.i
|
|
|
|
DEPENDS ../common/swig/kicad.i
|
|
|
|
DEPENDS ../common/swig/wx.i
|
|
|
|
DEPENDS ../common/swig/ki_exception.i
|
2013-01-13 00:34:16 +00:00
|
|
|
DEPENDS ../scripting/kicadplugins.i
|
|
|
|
|
2013-09-20 17:01:21 +00:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_CURRENT_BINARY_DIR}/docstrings
|
2013-09-23 15:19:39 +00:00
|
|
|
|
2017-01-25 19:57:54 +00:00
|
|
|
# Make docstrings.i available if it doesn't exist
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_CURRENT_BINARY_DIR}/docstrings/docstrings.i
|
|
|
|
|
|
|
|
COMMAND ${SWIG_EXECUTABLE}
|
|
|
|
${SWIG_OPTS} -o ${CMAKE_CURRENT_BINARY_DIR}/pcbnew_wrap.cxx swig/pcbnew.i
|
|
|
|
|
|
|
|
COMMAND ${PYTHON_EXECUTABLE}
|
|
|
|
${CMAKE_SOURCE_DIR}/scripting/build_tools/fix_swig_imports.py
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/pcbnew.py
|
|
|
|
|
2013-01-13 00:34:16 +00:00
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
2014-04-08 04:55:53 +00:00
|
|
|
)
|
2013-08-20 18:03:21 +00:00
|
|
|
endif()
|
2012-02-28 21:30:46 +00:00
|
|
|
|
2012-03-11 19:48:43 +00:00
|
|
|
|
2013-09-23 15:19:39 +00:00
|
|
|
if( BUILD_GITHUB_PLUGIN )
|
|
|
|
set( GITHUB_PLUGIN_LIBRARIES github_plugin )
|
|
|
|
endif()
|
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
if( UNIX AND NOT APPLE )
|
2013-09-23 15:19:39 +00:00
|
|
|
list( APPEND PCBNEW_EXTRA_LIBS rt )
|
2013-01-13 00:34:16 +00:00
|
|
|
endif()
|
2012-03-17 15:17:13 +00:00
|
|
|
|
2012-07-16 14:48:51 +00:00
|
|
|
|
2013-09-20 17:01:21 +00:00
|
|
|
###
|
|
|
|
# Doxygen python documentation
|
|
|
|
###
|
|
|
|
|
|
|
|
if( DOXYGEN_FOUND )
|
|
|
|
if( KICAD_SCRIPTING )
|
2013-09-23 15:19:39 +00:00
|
|
|
|
2013-09-20 17:01:21 +00:00
|
|
|
# create XML files from doxygen parsing
|
|
|
|
add_custom_target( doxygen-python-xml
|
|
|
|
${CMAKE_COMMAND} -E remove_directory doxygen-python-xml
|
|
|
|
COMMAND SOURCES_DIR=${CMAKE_SOURCE_DIR} ${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile_xml
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
DEPENDS Doxyfile_xml
|
|
|
|
COMMENT "building doxygen docs into directory doxygen-python/html"
|
2014-04-08 04:55:53 +00:00
|
|
|
)
|
2013-09-20 17:01:21 +00:00
|
|
|
|
|
|
|
# create .i files from XML doxygen parsing, docstrings.i will include all of them
|
2013-09-23 15:19:39 +00:00
|
|
|
add_custom_target( xml-to-docstrings
|
2013-09-20 17:01:21 +00:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E remove_directory docstrings
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E make_directory docstrings
|
2013-09-21 22:03:02 +00:00
|
|
|
COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/scripting/build_tools/extract_docstrings.py pcbnew.py doxygen-xml/xml docstrings
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E remove pcbnew.py # force removal so it will be recreated later with the new docstrings
|
2013-09-20 17:01:21 +00:00
|
|
|
COMMENT "building docstring files"
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
DEPENDS pcbnew.py
|
|
|
|
DEPENDS doxygen-python-xml
|
2013-09-23 15:19:39 +00:00
|
|
|
)
|
2013-09-20 17:01:21 +00:00
|
|
|
|
2018-06-13 09:55:19 +00:00
|
|
|
# The sources to give to the Python Doxygen target
|
|
|
|
set( DOXYGEN_PYTHON_SOURCES
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/pcbnew.py
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/python/plugins/FootprintWizardBase.py
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/python/plugins/PadArray.py )
|
|
|
|
|
|
|
|
# The Doxyfile expects a space-separated list in the env var
|
|
|
|
string(REPLACE ";" " " DOXYGEN_PYTHON_SOURCES_STR "${DOXYGEN_PYTHON_SOURCES}")
|
|
|
|
|
|
|
|
# Create doxygen-python html
|
2013-09-20 17:01:21 +00:00
|
|
|
add_custom_target( doxygen-python
|
|
|
|
${CMAKE_COMMAND} -E remove_directory doxygen-python
|
2018-06-13 11:51:49 +00:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E env
|
|
|
|
PYTHON_SOURCES_TO_DOC=${DOXYGEN_PYTHON_SOURCES_STR}
|
|
|
|
CMAKE_SOURCE_DIR=${CMAKE_SOURCE_DIR}
|
|
|
|
${DOXYGEN_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile_python
|
2013-09-20 17:01:21 +00:00
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
|
2013-09-21 22:34:15 +00:00
|
|
|
DEPENDS Doxyfile_python
|
2013-09-20 17:01:21 +00:00
|
|
|
DEPENDS xml-to-docstrings
|
2018-06-13 09:55:19 +00:00
|
|
|
DEPENDS ${DOXYGEN_PYTHON_SOURCES}
|
2013-09-20 17:01:21 +00:00
|
|
|
COMMENT "building doxygen docs into directory doxygen-python/html"
|
2014-04-08 04:55:53 +00:00
|
|
|
)
|
2013-09-20 17:01:21 +00:00
|
|
|
endif()
|
2013-08-20 18:03:21 +00:00
|
|
|
endif()
|
2012-07-16 14:48:51 +00:00
|
|
|
|
2013-09-20 17:01:21 +00:00
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
if( MINGW )
|
|
|
|
# PCBNEW_RESOURCES variable is set by the macro.
|
|
|
|
mingw_resource_compiler( pcbnew )
|
2016-01-28 16:53:24 +00:00
|
|
|
else()
|
|
|
|
set( PCBNEW_RESOURCES pcbnew.rc )
|
2013-08-20 18:03:21 +00:00
|
|
|
endif()
|
2008-09-07 19:32:07 +00:00
|
|
|
|
2014-10-16 22:13:01 +00:00
|
|
|
|
|
|
|
if( APPLE )
|
|
|
|
# setup bundle
|
|
|
|
set( PCBNEW_RESOURCES pcbnew.icns pcbnew_doc.icns )
|
|
|
|
set_source_files_properties( "${CMAKE_CURRENT_SOURCE_DIR}/pcbnew.icns" PROPERTIES
|
|
|
|
MACOSX_PACKAGE_LOCATION Resources
|
|
|
|
)
|
|
|
|
set_source_files_properties( "${CMAKE_CURRENT_SOURCE_DIR}/pcbnew_doc.icns" PROPERTIES
|
|
|
|
MACOSX_PACKAGE_LOCATION Resources
|
|
|
|
)
|
|
|
|
set( MACOSX_BUNDLE_ICON_FILE pcbnew.icns )
|
2015-10-29 19:43:04 +00:00
|
|
|
set( MACOSX_BUNDLE_GUI_IDENTIFIER org.kicad-pcb.kicad )
|
2014-10-16 22:13:01 +00:00
|
|
|
set( MACOSX_BUNDLE_NAME pcbnew )
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
add_subdirectory( pcad2kicadpcb_plugin )
|
2014-10-22 23:25:59 +00:00
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
if( BUILD_GITHUB_PLUGIN )
|
|
|
|
add_subdirectory( github )
|
2016-06-08 01:38:58 +00:00
|
|
|
# github_plugin depends on make_lexer outputs in common
|
|
|
|
add_dependencies( github_plugin pcbcommon )
|
2013-08-20 18:03:21 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
|
2014-10-26 19:54:48 +00:00
|
|
|
# a very small program launcher for pcbnew_kiface
|
|
|
|
add_executable( pcbnew WIN32 MACOSX_BUNDLE
|
|
|
|
../common/single_top.cpp
|
|
|
|
${PCBNEW_RESOURCES}
|
|
|
|
)
|
|
|
|
set_source_files_properties( ../common/single_top.cpp pcbnew.cpp PROPERTIES
|
|
|
|
COMPILE_DEFINITIONS "TOP_FRAME=FRAME_PCB;PGM_DATA_FILE_EXT=\"kicad_pcb\";BUILD_KIWAY_DLL"
|
|
|
|
)
|
|
|
|
target_link_libraries( pcbnew
|
|
|
|
#singletop # replaces common, giving us restrictive control and link warnings.
|
|
|
|
# There's way too much crap coming in from common yet.
|
|
|
|
common
|
2017-02-20 16:57:41 +00:00
|
|
|
gal
|
2014-10-26 19:54:48 +00:00
|
|
|
${wxWidgets_LIBRARIES}
|
|
|
|
)
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
2017-01-25 19:57:54 +00:00
|
|
|
if( PCBNEW_LINK_MAPS )
|
2014-10-26 19:54:48 +00:00
|
|
|
set_target_properties( pcbnew PROPERTIES
|
|
|
|
LINK_FLAGS "${TO_LINKER},-cref ${TO_LINKER},-Map=pcbnew.map" )
|
|
|
|
endif()
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
2014-10-26 19:54:48 +00:00
|
|
|
# the main pcbnew program, in DSO form.
|
2018-02-26 01:36:12 +00:00
|
|
|
add_library( pcbnew_kiface_objects OBJECT
|
2014-10-26 19:54:48 +00:00
|
|
|
pcbnew.cpp
|
|
|
|
${PCBNEW_SRCS}
|
|
|
|
${PCBNEW_COMMON_SRCS}
|
|
|
|
${PCBNEW_SCRIPTING_SRCS}
|
|
|
|
)
|
2018-02-26 01:36:12 +00:00
|
|
|
|
2019-01-23 15:58:16 +00:00
|
|
|
# CMake <3.9 can't link anything to object libraries,
|
|
|
|
# but we only need include directories, as we will link the kiface MODULE
|
|
|
|
target_include_directories( pcbnew_kiface_objects PRIVATE
|
|
|
|
$<TARGET_PROPERTY:common,INCLUDE_DIRECTORIES>
|
|
|
|
)
|
|
|
|
|
2018-02-26 01:36:12 +00:00
|
|
|
add_library( pcbnew_kiface MODULE $<TARGET_OBJECTS:pcbnew_kiface_objects> )
|
|
|
|
|
2014-10-26 19:54:48 +00:00
|
|
|
set_target_properties( pcbnew_kiface PROPERTIES
|
|
|
|
# Decorate OUTPUT_NAME with PREFIX and SUFFIX, creating something like
|
|
|
|
# _pcbnew.so, _pcbnew.dll, or _pcbnew.kiface
|
|
|
|
OUTPUT_NAME pcbnew
|
|
|
|
PREFIX ${KIFACE_PREFIX}
|
|
|
|
SUFFIX ${KIFACE_SUFFIX}
|
|
|
|
)
|
|
|
|
|
2017-03-22 13:11:08 +00:00
|
|
|
if ( KICAD_BUILD_TESTS )
|
|
|
|
if ( UNIX )
|
|
|
|
add_custom_command(TARGET pcbnew_kiface POST_BUILD
|
|
|
|
COMMAND ln -sf _pcbnew.kiface lib_pcbnew_kiface.so )
|
|
|
|
else()
|
|
|
|
add_custom_command(TARGET pcbnew_kiface POST_BUILD
|
|
|
|
COMMAND copy _pcbnew.kiface lib_pcbnew_kiface.dll )
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
|
|
endif ()
|
|
|
|
|
2018-02-26 01:36:12 +00:00
|
|
|
set( PCBNEW_KIFACE_LIBRARIES
|
2014-10-26 19:54:48 +00:00
|
|
|
3d-viewer
|
2018-10-13 18:37:28 +00:00
|
|
|
connectivity
|
2014-10-26 19:54:48 +00:00
|
|
|
pcbcommon
|
|
|
|
pnsrouter
|
|
|
|
pcad2kicadpcb
|
2018-10-15 19:43:29 +00:00
|
|
|
legacy_wx
|
2016-06-01 16:40:18 +00:00
|
|
|
common
|
2014-10-26 19:54:48 +00:00
|
|
|
gal
|
|
|
|
lib_dxf
|
|
|
|
idf3
|
|
|
|
${wxWidgets_LIBRARIES}
|
2016-01-10 21:44:37 +00:00
|
|
|
${GITHUB_PLUGIN_LIBRARIES}
|
2014-10-26 19:54:48 +00:00
|
|
|
${GDI_PLUS_LIBRARIES}
|
|
|
|
${PYTHON_LIBRARIES}
|
|
|
|
${Boost_LIBRARIES} # must follow GITHUB
|
|
|
|
${PCBNEW_EXTRA_LIBS} # -lrt must follow Boost
|
|
|
|
)
|
2017-03-20 18:49:10 +00:00
|
|
|
|
2018-02-26 01:36:12 +00:00
|
|
|
|
|
|
|
target_link_libraries( pcbnew_kiface ${PCBNEW_KIFACE_LIBRARIES} )
|
|
|
|
|
2014-10-26 19:54:48 +00:00
|
|
|
set_source_files_properties( pcbnew.cpp PROPERTIES
|
|
|
|
# The KIFACE is in pcbnew.cpp, export it:
|
|
|
|
COMPILE_DEFINITIONS "BUILD_KIWAY_DLL;COMPILING_DLL"
|
|
|
|
)
|
|
|
|
|
2017-01-25 19:57:54 +00:00
|
|
|
if( PCBNEW_LINK_MAPS )
|
2014-10-26 19:54:48 +00:00
|
|
|
set_target_properties( pcbnew_kiface PROPERTIES
|
|
|
|
LINK_FLAGS "${TO_LINKER},-cref ${TO_LINKER},-Map=_pcbnew.kiface.map"
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
)
|
2014-10-26 19:54:48 +00:00
|
|
|
set_target_properties( pcbnew PROPERTIES
|
|
|
|
LINK_FLAGS "${TO_LINKER},-cref ${TO_LINKER},-Map=pcbnew.map"
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
)
|
2014-10-26 19:54:48 +00:00
|
|
|
endif()
|
2014-03-22 11:35:33 +00:00
|
|
|
|
2014-10-26 19:54:48 +00:00
|
|
|
# if building pcbnew, then also build pcbnew_kiface if out of date.
|
|
|
|
add_dependencies( pcbnew pcbnew_kiface )
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
2017-03-20 18:49:10 +00:00
|
|
|
# add dependency to specctra_lexer_source_files, to force
|
|
|
|
# generation of autogenerated file
|
2018-03-06 00:46:05 +00:00
|
|
|
add_dependencies( pcbnew_kiface_objects specctra_lexer_source_files )
|
2017-03-20 18:49:10 +00:00
|
|
|
|
2014-10-26 19:54:48 +00:00
|
|
|
# these 2 binaries are a matched set, keep them together:
|
|
|
|
if( APPLE )
|
|
|
|
set_target_properties( pcbnew PROPERTIES
|
2019-12-26 12:42:25 +00:00
|
|
|
MACOSX_BUNDLE_INFO_PLIST ${PROJECT_BINARY_DIR}/pcbnew/Info.plist
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
)
|
2014-10-26 19:54:48 +00:00
|
|
|
|
|
|
|
# puts binaries into the *.app bundle while linking
|
|
|
|
set_target_properties( pcbnew_kiface PROPERTIES
|
|
|
|
LIBRARY_OUTPUT_DIRECTORY ${OSX_BUNDLE_BUILD_KIFACE_DIR}
|
2014-04-08 04:55:53 +00:00
|
|
|
)
|
2014-10-26 19:54:48 +00:00
|
|
|
# put individual bundle outside of main bundle as a first step
|
|
|
|
# will be pulled into the main bundle when creating main bundle
|
|
|
|
install( TARGETS pcbnew
|
|
|
|
DESTINATION ${KICAD_BIN}
|
|
|
|
COMPONENT binary
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
)
|
2014-10-26 19:54:48 +00:00
|
|
|
install( CODE "
|
|
|
|
# override default embedded path settings
|
|
|
|
${OSX_BUNDLE_OVERRIDE_PATHS}
|
|
|
|
|
|
|
|
# do all the work
|
|
|
|
include( BundleUtilities )
|
|
|
|
fixup_bundle( ${KICAD_BIN}/pcbnew.app/Contents/MacOS/pcbnew
|
|
|
|
\"\"
|
|
|
|
\"\"
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
)
|
2014-10-26 19:54:48 +00:00
|
|
|
" COMPONENT Runtime
|
|
|
|
)
|
|
|
|
else()
|
2014-10-16 22:13:01 +00:00
|
|
|
install( TARGETS pcbnew
|
|
|
|
DESTINATION ${KICAD_BIN}
|
|
|
|
COMPONENT binary
|
|
|
|
)
|
2014-10-26 19:54:48 +00:00
|
|
|
install( TARGETS pcbnew_kiface
|
|
|
|
DESTINATION ${KICAD_BIN}
|
|
|
|
COMPONENT binary
|
|
|
|
)
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
endif()
|
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
if( KICAD_SCRIPTING )
|
2014-10-08 18:41:36 +00:00
|
|
|
if( NOT APPLE )
|
|
|
|
install( FILES ${CMAKE_BINARY_DIR}/pcbnew/pcbnew.py DESTINATION ${PYTHON_DEST} )
|
|
|
|
else()
|
|
|
|
# put into bundle at build time, it is relocated at install
|
|
|
|
add_custom_target( ScriptingPcbnewPyCopy ALL
|
2014-10-09 23:45:58 +00:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_BINARY_DIR}/pcbnew/pcbnew.py" "${PYTHON_DEST}/"
|
2014-10-08 18:41:36 +00:00
|
|
|
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/pcbnew.py
|
|
|
|
COMMENT "Copying pcbnew.py into ${PYTHON_DEST}"
|
2014-04-08 04:55:53 +00:00
|
|
|
)
|
2019-12-22 02:04:15 +00:00
|
|
|
add_dependencies( ScriptingPcbnewPyCopy ScriptingPythonDirectoryCreation )
|
2014-02-07 18:53:54 +00:00
|
|
|
endif()
|
2015-09-30 20:14:59 +00:00
|
|
|
|
2016-09-20 15:59:43 +00:00
|
|
|
# python plugins
|
|
|
|
install( DIRECTORY ${PROJECT_SOURCE_DIR}/pcbnew/python/plugins/
|
2015-09-30 20:14:59 +00:00
|
|
|
DESTINATION ${KICAD_DATA}/scripting/plugins
|
|
|
|
FILE_PERMISSIONS OWNER_EXECUTE OWNER_READ OWNER_WRITE GROUP_EXECUTE GROUP_READ WORLD_EXECUTE WORLD_READ
|
|
|
|
)
|
2015-12-21 14:55:31 +00:00
|
|
|
|
2016-09-20 15:59:43 +00:00
|
|
|
# python shell
|
2018-04-07 21:15:13 +00:00
|
|
|
if ( KICAD_SCRIPTING_WXPYTHON )
|
|
|
|
install( DIRECTORY ${PROJECT_SOURCE_DIR}/pcbnew/python/kicad_pyshell/
|
|
|
|
DESTINATION ${KICAD_DATA}/scripting/kicad_pyshell
|
|
|
|
FILE_PERMISSIONS OWNER_EXECUTE OWNER_READ OWNER_WRITE GROUP_EXECUTE GROUP_READ WORLD_EXECUTE WORLD_READ
|
|
|
|
)
|
|
|
|
endif()
|
2013-08-20 18:03:21 +00:00
|
|
|
endif()
|
2012-04-08 14:25:49 +00:00
|
|
|
|
2017-01-25 19:57:54 +00:00
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
if( KICAD_SCRIPTING_MODULES )
|
2017-01-25 19:57:54 +00:00
|
|
|
|
|
|
|
# 1) KICAD_SCRIPTING enables python inside _pcbnew.kiface.
|
|
|
|
# 2) KICAD_SCRIPTING_MODULES enables python from the OS command line for pcbnew.
|
|
|
|
# When python is running within _pcbnew.kiface (case 1 above) it uses said
|
|
|
|
# kiface for the native part of the pcbnew python module. This is a kind of
|
|
|
|
# circular dependency that works well. When running python from
|
|
|
|
# the command line (case 2 above) then python needs a native portion of the pcbnew
|
|
|
|
# python module also, and this is _pcbnew.{so,pyd}. It turns out that the
|
|
|
|
# kiface file is built adequately to serve the needs of 2) for now if it is
|
|
|
|
# merely renamed. This is phase 1 of a 2 step plan.
|
|
|
|
# In phase 2 we will use the _pcbnew.kiface file without renaming, by doctoring
|
|
|
|
# what the python portion of the pcbnew python module wants to load when run
|
|
|
|
# from the command line, case 2 above.
|
|
|
|
|
|
|
|
# Here is built the _pcbnew.{so,pyd} which is the native part of the pcbnew Python library
|
|
|
|
# when Python is used from the command line.
|
2013-01-13 00:34:16 +00:00
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
if( MINGW )
|
2013-08-20 18:03:21 +00:00
|
|
|
install( FILES ${CMAKE_BINARY_DIR}/pcbnew/_pcbnew.pyd DESTINATION ${PYTHON_DEST} )
|
2017-01-25 19:57:54 +00:00
|
|
|
set( PYMOD_EXT "pyd" )
|
2014-10-08 18:41:36 +00:00
|
|
|
elseif( APPLE )
|
|
|
|
# put everything into bundle at build time, it is relocated at install
|
|
|
|
add_custom_target( ScriptingModulesPcbnewSoCopy ALL
|
2014-10-09 23:45:58 +00:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_BINARY_DIR}/pcbnew/_pcbnew.so" "${PYTHON_DEST}/"
|
2017-03-31 12:49:48 +00:00
|
|
|
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/_pcbnew.so
|
2014-10-08 18:41:36 +00:00
|
|
|
COMMENT "Copying _pcbnew.so into ${PYTHON_DEST}"
|
|
|
|
)
|
2019-12-22 02:04:15 +00:00
|
|
|
add_dependencies( ScriptingModulesPcbnewSoCopy ScriptingPythonDirectoryCreation )
|
2017-01-25 19:57:54 +00:00
|
|
|
set( PYMOD_EXT "so" )
|
|
|
|
else() # only linux remains among supported platforms
|
2020-12-02 16:28:34 +00:00
|
|
|
install( FILES ${CMAKE_CURRENT_BINARY_DIR}/_pcbnew.kiface DESTINATION ${PYTHON_DEST} COMPONENT binary RENAME "_pcbnew.so" )
|
2017-01-25 19:57:54 +00:00
|
|
|
set( PYMOD_EXT "so" )
|
2013-08-20 18:03:21 +00:00
|
|
|
endif()
|
2017-01-25 19:57:54 +00:00
|
|
|
|
2018-10-22 23:11:11 +00:00
|
|
|
if( APPLE )
|
|
|
|
add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/_pcbnew.${PYMOD_EXT}
|
|
|
|
DEPENDS pcbnew_kiface
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy ${OSX_BUNDLE_BUILD_KIFACE_DIR}/_pcbnew.kiface _pcbnew.${PYMOD_EXT}
|
|
|
|
COMMENT "Creating python's pcbnew native module _pcbnew.${PYMOD_EXT} for command line use."
|
|
|
|
)
|
|
|
|
add_custom_target(
|
|
|
|
pcbnew_python_module ALL
|
|
|
|
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/_pcbnew.${PYMOD_EXT}
|
|
|
|
)
|
|
|
|
else()
|
2020-12-02 16:28:34 +00:00
|
|
|
# For phase 1, copy _pcbnew.kiface to the python module.
|
|
|
|
add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/_pcbnew.${PYMOD_EXT}
|
|
|
|
DEPENDS pcbnew_kiface
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy _pcbnew.kiface _pcbnew.${PYMOD_EXT}
|
|
|
|
COMMENT "Creating python's pcbnew native module _pcbnew.${PYMOD_EXT} for command line use."
|
|
|
|
)
|
|
|
|
add_custom_target(
|
|
|
|
pcbnew_python_module ALL
|
|
|
|
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/_pcbnew.${PYMOD_EXT}
|
|
|
|
)
|
2018-10-22 23:11:11 +00:00
|
|
|
endif()
|
|
|
|
|
2014-10-08 18:41:36 +00:00
|
|
|
endif()
|
2014-02-07 18:53:54 +00:00
|
|
|
|
2017-01-25 19:57:54 +00:00
|
|
|
|
2014-10-08 18:41:36 +00:00
|
|
|
if( APPLE )
|
|
|
|
if( KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES )
|
2019-12-22 02:04:15 +00:00
|
|
|
# If we don't have wxPython, then we must create the site-packages directory
|
|
|
|
add_custom_target( ScriptingPythonDirectoryCreation ALL
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E make_directory "${PYTHON_DEST}"
|
|
|
|
COMMENT "Creating Python library directory ${PYTHON_DEST}"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if( KICAD_SCRIPTING_WXPYTHON )
|
2014-10-08 18:41:36 +00:00
|
|
|
# find wx-X.Y-osx_cocoa path below PYTHON_SITE_PACKAGE_PATH
|
2015-07-08 17:44:55 +00:00
|
|
|
file( GLOB WXPYTHON_DIR RELATIVE ${PYTHON_SITE_PACKAGE_PATH} ${PYTHON_SITE_PACKAGE_PATH}/wx-?.?-osx_cocoa )
|
|
|
|
if( NOT WXPYTHON_DIR )
|
2014-10-08 18:41:36 +00:00
|
|
|
message( FATAL_ERROR "Could not find 'wx-?.?-osx_cocoa' in '${PYTHON_SITE_PACKAGE_PATH}'" )
|
2014-03-10 22:37:59 +00:00
|
|
|
endif()
|
2014-10-08 18:41:36 +00:00
|
|
|
# copy contents
|
|
|
|
add_custom_target( ScriptingWxpythonCopy ALL
|
2015-07-08 17:44:55 +00:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy_directory "${PYTHON_SITE_PACKAGE_PATH}/${WXPYTHON_DIR}" "${PYTHON_DEST}/${WXPYTHON_DIR}"
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy "${PYTHON_SITE_PACKAGE_PATH}/wxversion.py" "${PYTHON_DEST}"
|
2014-10-08 18:41:36 +00:00
|
|
|
COMMENT "Copying wxPython into ${PYTHON_DEST}"
|
|
|
|
)
|
2019-12-22 02:04:15 +00:00
|
|
|
add_dependencies( ScriptingWxpythonCopy ScriptingPythonDirectoryCreation )
|
2014-02-07 18:53:54 +00:00
|
|
|
endif()
|
2013-08-20 18:03:21 +00:00
|
|
|
endif()
|