2008-03-11 15:57:54 +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
|
|
|
|
|
|
|
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 18:18:38 +00:00
|
|
|
###
|
|
|
|
# Sources
|
|
|
|
###
|
2010-10-28 13:02:07 +00: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 19:33:24 +00:00
|
|
|
../common/base_units.cpp
|
2012-02-01 19:49:37 +00:00
|
|
|
../pcbnew/netlist_reader_common.cpp
|
|
|
|
../pcbnew/netlist_reader_kicad.cpp
|
|
|
|
../pcbnew/netlist_reader_firstformat.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
|
2008-01-30 09:42:19 +00:00
|
|
|
cvframe.cpp
|
|
|
|
cvpcb.cpp
|
|
|
|
listboxes.cpp
|
|
|
|
loadcmp.cpp
|
2010-12-17 20:34:29 +00:00
|
|
|
menubar.cpp
|
2008-01-30 09:42:19 +00:00
|
|
|
readschematicnetlist.cpp
|
2012-02-11 09:04:26 +00:00
|
|
|
read_write_cmpfile.cpp
|
|
|
|
readwrite_dlgs.cpp
|
2008-01-30 09:42:19 +00:00
|
|
|
setvisu.cpp
|
|
|
|
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
|
|
|
|
###
|
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 18:18:38 +00: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 18:18:38 +00:00
|
|
|
###
|
|
|
|
# Create the cvpcb executable
|
|
|
|
###
|
|
|
|
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
|
|
|
###
|
2009-04-29 12:10:15 +00:00
|
|
|
if(APPLE)
|
2010-05-16 18:18:38 +00: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 18:18:38 +00:00
|
|
|
###
|
|
|
|
# Link executable target cvpcb with correct libraries
|
|
|
|
###
|
2012-01-23 04:53:21 +00:00
|
|
|
target_link_libraries(cvpcb
|
|
|
|
3d-viewer
|
|
|
|
pcbcommon
|
|
|
|
common
|
|
|
|
bitmaps
|
2012-01-25 14:56:52 +00:00
|
|
|
polygon
|
2012-01-23 04:53:21 +00:00
|
|
|
kbool
|
|
|
|
${wxWidgets_LIBRARIES}
|
2012-01-25 14:56:52 +00:00
|
|
|
${OPENGL_LIBRARIES}
|
2012-01-23 04:53:21 +00:00
|
|
|
${GDI_PLUS_LIBRARIES}
|
|
|
|
)
|
|
|
|
|
2010-05-16 18:18:38 +00: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)
|