2013-08-20 18:03:21 +00:00
|
|
|
add_definitions( -DCVPCB )
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2010-05-16 18:18:38 +00:00
|
|
|
###
|
|
|
|
# Includes
|
|
|
|
###
|
2012-01-23 04:33:36 +00:00
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
include_directories( BEFORE ${INC_BEFORE} )
|
2012-01-23 04:33:36 +00:00
|
|
|
include_directories(
|
|
|
|
./dialogs
|
|
|
|
../3d-viewer
|
|
|
|
../pcbnew
|
2013-09-14 20:33:22 +00:00
|
|
|
../pcbnew/dialogs
|
2012-01-23 04:33:36 +00:00
|
|
|
../polygon
|
|
|
|
../common
|
|
|
|
${INC_AFTER}
|
|
|
|
)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2010-05-16 18:18:38 +00:00
|
|
|
###
|
|
|
|
# Sources
|
|
|
|
###
|
2013-08-20 18:03:21 +00:00
|
|
|
set( CVPCB_DIALOGS
|
2010-10-28 13:02:07 +00:00
|
|
|
dialogs/dialog_cvpcb_config.cpp
|
|
|
|
dialogs/dialog_cvpcb_config_fbp.cpp
|
|
|
|
dialogs/dialog_display_options.cpp
|
|
|
|
dialogs/dialog_display_options_base.cpp
|
2013-09-14 20:33:22 +00:00
|
|
|
../pcbnew/dialogs/dialog_fp_lib_table.cpp
|
|
|
|
../pcbnew/dialogs/dialog_fp_lib_table_base.cpp
|
2013-10-13 21:33:58 +00:00
|
|
|
../pcbnew/dialogs/dialog_fp_plugin_options.cpp
|
|
|
|
../pcbnew/dialogs/dialog_fp_plugin_options_base.cpp
|
2010-10-28 13:02:07 +00:00
|
|
|
)
|
|
|
|
|
2013-08-20 18:03:21 +00:00
|
|
|
set( CVPCB_SRCS
|
2012-04-25 19:33:24 +00:00
|
|
|
../common/base_units.cpp
|
2013-05-01 19:01:14 +00:00
|
|
|
../pcbnew/board_items_to_polygon_shape_transform.cpp
|
2012-03-15 14:31:16 +00:00
|
|
|
../pcbnew/class_drc_item.cpp
|
2008-01-30 09:42:19 +00:00
|
|
|
autosel.cpp
|
|
|
|
cfg.cpp
|
2010-05-16 18:18:38 +00:00
|
|
|
class_components_listbox.cpp
|
2010-02-01 21:23:27 +00:00
|
|
|
class_DisplayFootprintsFrame.cpp
|
2010-05-16 18:18:38 +00:00
|
|
|
class_footprints_listbox.cpp
|
2013-05-31 17:33:46 +00:00
|
|
|
class_library_listbox.cpp
|
2008-01-30 09:42:19 +00:00
|
|
|
cvframe.cpp
|
|
|
|
cvpcb.cpp
|
|
|
|
listboxes.cpp
|
2010-12-17 20:34:29 +00:00
|
|
|
menubar.cpp
|
2012-02-11 09:04:26 +00:00
|
|
|
readwrite_dlgs.cpp
|
2008-01-30 09:42:19 +00:00
|
|
|
tool_cvpcb.cpp
|
2011-12-07 05:28:49 +00:00
|
|
|
)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2010-05-16 18:18:38 +00:00
|
|
|
###
|
|
|
|
# Windows resource file
|
|
|
|
###
|
2013-08-20 18:03:21 +00:00
|
|
|
if( WIN32 )
|
|
|
|
if( MINGW )
|
2008-04-18 08:04:54 +00:00
|
|
|
# CVPCB_RESOURCES variable is set by the macro.
|
2013-08-20 18:03:21 +00:00
|
|
|
mingw_resource_compiler( cvpcb )
|
|
|
|
else()
|
|
|
|
set( CVPCB_RESOURCES cvpcb.rc )
|
|
|
|
endif()
|
|
|
|
endif()
|
2008-09-07 19:32:07 +00:00
|
|
|
|
2010-01-16 22:32:26 +00:00
|
|
|
###
|
2010-05-16 18:18:38 +00:00
|
|
|
# Apple resource files
|
2010-01-16 22:32:26 +00:00
|
|
|
###
|
2013-08-20 18:03:21 +00:00
|
|
|
if( APPLE )
|
|
|
|
set( CVPCB_RESOURCES cvpcb.icns cvpcb_doc.icns )
|
|
|
|
|
|
|
|
set_source_files_properties( "${CMAKE_CURRENT_SOURCE_DIR}/cvpcb.icns"
|
|
|
|
PROPERTIES MACOSX_PACKAGE_LOCATION Resources )
|
|
|
|
|
|
|
|
set_source_files_properties( "${CMAKE_CURRENT_SOURCE_DIR}/cvpcb_doc.icns"
|
|
|
|
PROPERTIES MACOSX_PACKAGE_LOCATION Resources )
|
|
|
|
|
|
|
|
set( MACOSX_BUNDLE_ICON_FILE cvpcb.icns )
|
|
|
|
set( MACOSX_BUNDLE_GUI_IDENTIFIER org.kicad-eda.cvpcb )
|
|
|
|
endif()
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2010-05-16 18:18:38 +00:00
|
|
|
###
|
|
|
|
# Create the cvpcb executable
|
|
|
|
###
|
2013-08-20 18:03:21 +00:00
|
|
|
add_executable( cvpcb WIN32 MACOSX_BUNDLE
|
2012-01-23 04:53:21 +00:00
|
|
|
${CVPCB_SRCS}
|
|
|
|
${CVPCB_DIALOGS}
|
|
|
|
${CVPCB_RESOURCES}
|
|
|
|
)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2010-01-16 22:32:26 +00:00
|
|
|
###
|
2010-05-16 18:18:38 +00:00
|
|
|
# Set properties for APPLE on cvpcb target
|
2010-01-16 22:32:26 +00:00
|
|
|
###
|
2013-08-20 18:03:21 +00:00
|
|
|
if( APPLE )
|
|
|
|
set_target_properties( cvpcb PROPERTIES MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist )
|
|
|
|
endif()
|
2009-04-29 12:10:15 +00:00
|
|
|
|
2010-05-16 18:18:38 +00:00
|
|
|
###
|
|
|
|
# Link executable target cvpcb with correct libraries
|
|
|
|
###
|
2013-08-20 18:03:21 +00:00
|
|
|
target_link_libraries( cvpcb
|
2012-01-23 04:53:21 +00:00
|
|
|
3d-viewer
|
|
|
|
pcbcommon
|
2012-12-29 09:54:25 +00:00
|
|
|
pcad2kicadpcb
|
2012-01-23 04:53:21 +00:00
|
|
|
common
|
|
|
|
bitmaps
|
2012-01-25 14:56:52 +00:00
|
|
|
polygon
|
2012-01-23 04:53:21 +00:00
|
|
|
${wxWidgets_LIBRARIES}
|
2012-01-25 14:56:52 +00:00
|
|
|
${OPENGL_LIBRARIES}
|
2012-01-23 04:53:21 +00:00
|
|
|
${GDI_PLUS_LIBRARIES}
|
|
|
|
)
|
|
|
|
|
2013-09-21 07:30:23 +00:00
|
|
|
if( BUILD_GITHUB_PLUGIN )
|
|
|
|
target_link_libraries( cvpcb github_plugin )
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
2010-05-16 18:18:38 +00:00
|
|
|
###
|
|
|
|
# Add cvpcb as install target
|
|
|
|
###
|
2013-08-20 18:03:21 +00:00
|
|
|
install( TARGETS cvpcb
|
|
|
|
DESTINATION ${KICAD_BIN}
|
|
|
|
COMPONENT binary
|
|
|
|
)
|