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