90 lines
2.2 KiB
CMake
90 lines
2.2 KiB
CMake
include_directories(${CMAKE_CURRENT_SOURCE_DIR}
|
|
${Boost_INCLUDE_DIR}
|
|
../3d-viewer
|
|
../pcbnew
|
|
../polygon
|
|
)
|
|
|
|
set(COMMON_SRCS
|
|
about_kicad.cpp
|
|
base_screen.cpp
|
|
base_struct.cpp
|
|
basicframe.cpp
|
|
bezier_curves.cpp
|
|
block_commande.cpp
|
|
build_version.cpp
|
|
class_colors_design_settings.cpp
|
|
class_marker_base.cpp
|
|
class_plotter.cpp
|
|
class_undoredo_container.cpp
|
|
common.cpp
|
|
common_plot_functions.cpp
|
|
common_plotHPGL_functions.cpp
|
|
common_plotPS_functions.cpp
|
|
common_plotGERBER_functions.cpp
|
|
common_plotDXF_functions.cpp
|
|
confirm.cpp
|
|
copy_to_clipboard.cpp
|
|
dialog_display_info_HTML_base.cpp
|
|
dialog_load_error.cpp
|
|
dcsvg.cpp
|
|
displlst.cpp
|
|
dlist.cpp
|
|
drawframe.cpp
|
|
drawpanel.cpp
|
|
drawtxt.cpp
|
|
dsnlexer.cpp
|
|
edaappl.cpp
|
|
eda_dde.cpp
|
|
eda_doc.cpp
|
|
gestfich.cpp
|
|
get_component_dialog.cpp
|
|
gr_basic.cpp
|
|
hotkeys_basic.cpp
|
|
msgpanel.cpp
|
|
projet_config.cpp
|
|
# pyhandler.cpp
|
|
richio.cpp
|
|
selcolor.cpp
|
|
string.cpp
|
|
toolbars.cpp
|
|
trigo.cpp
|
|
worksheet.cpp
|
|
wxwineda.cpp
|
|
zoom.cpp
|
|
)
|
|
|
|
add_library(common ${COMMON_SRCS})
|
|
|
|
set(PCB_COMMON_SRCS
|
|
pcbcommon.cpp
|
|
../pcbnew/basepcbframe.cpp
|
|
../pcbnew/class_board.cpp
|
|
../pcbnew/class_board_connected_item.cpp
|
|
../pcbnew/class_board_design_settings.cpp
|
|
../pcbnew/class_board_item.cpp
|
|
../pcbnew/class_dimension.cpp
|
|
../pcbnew/class_drawsegment.cpp
|
|
../pcbnew/class_drc_item.cpp
|
|
../pcbnew/class_edge_mod.cpp
|
|
../pcbnew/class_netclass.cpp
|
|
../pcbnew/class_netinfo_item.cpp
|
|
../pcbnew/class_netinfolist.cpp
|
|
../pcbnew/class_marker_pcb.cpp
|
|
../pcbnew/class_mire.cpp
|
|
../pcbnew/class_module.cpp
|
|
../pcbnew/class_module_transform_functions.cpp
|
|
../pcbnew/class_pad.cpp
|
|
../pcbnew/class_pad_draw_functions.cpp
|
|
../pcbnew/class_pcb_text.cpp
|
|
../pcbnew/class_text_mod.cpp
|
|
../pcbnew/class_track.cpp
|
|
../pcbnew/class_zone.cpp
|
|
../pcbnew/class_zone_setting.cpp
|
|
../pcbnew/classpcb.cpp
|
|
../pcbnew/collectors.cpp
|
|
../pcbnew/sel_layer.cpp
|
|
)
|
|
|
|
add_library(pcbcommon ${PCB_COMMON_SRCS})
|