2008-03-11 15:57:54 +00:00
|
|
|
add_definitions(-DCVPCB)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2008-09-07 19:32:07 +00:00
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}
|
2008-10-30 20:12:29 +00:00
|
|
|
${Boost_INCLUDE_DIR}
|
2008-09-07 19:32:07 +00:00
|
|
|
../3d-viewer
|
|
|
|
../pcbnew
|
2009-07-13 06:20:18 +00:00
|
|
|
../polygon
|
|
|
|
${CMAKE_SOURCE_DIR}/common)
|
2010-01-16 22:32:26 +00:00
|
|
|
##
|
|
|
|
# Name of target on OSX is also the title of the application
|
|
|
|
# on other targets this should be as normal
|
|
|
|
##
|
|
|
|
if(APPLE)
|
|
|
|
set(CVPCB_NAME CvPCB)
|
|
|
|
else(APPLE)
|
|
|
|
set(CVPCB_NAME cvpcb)
|
|
|
|
endif(APPLE)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2008-03-11 15:57:54 +00:00
|
|
|
set(CVPCB_SRCS
|
2008-01-30 09:42:19 +00:00
|
|
|
autosel.cpp
|
|
|
|
cfg.cpp
|
|
|
|
class_cvpcb.cpp
|
2009-08-20 11:44:06 +00:00
|
|
|
class_components_listbox.cpp
|
2010-02-01 21:23:27 +00:00
|
|
|
class_DisplayFootprintsFrame.cpp
|
2009-08-20 11:44:06 +00:00
|
|
|
class_footprints_listbox.cpp
|
2008-01-30 09:42:19 +00:00
|
|
|
cvframe.cpp
|
|
|
|
cvpcb.cpp
|
2009-04-21 17:56:27 +00:00
|
|
|
dialog_cvpcb_config.cpp
|
|
|
|
dialog_cvpcb_config_fbp.cpp
|
2008-01-30 09:42:19 +00:00
|
|
|
dialog_display_options.cpp
|
2009-10-10 17:27:53 +00:00
|
|
|
dummy_functions.cpp
|
2008-01-30 09:42:19 +00:00
|
|
|
genequiv.cpp
|
|
|
|
init.cpp
|
|
|
|
listboxes.cpp
|
|
|
|
listlib.cpp
|
|
|
|
loadcmp.cpp
|
|
|
|
menucfg.cpp
|
|
|
|
readschematicnetlist.cpp
|
|
|
|
savecmp.cpp
|
|
|
|
setvisu.cpp
|
|
|
|
tool_cvpcb.cpp
|
|
|
|
writenetlistpcbnew.cpp)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
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
|
|
|
###
|
|
|
|
# CvPCB.app resources
|
|
|
|
###
|
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-01-16 22:32:26 +00:00
|
|
|
add_executable(${CVPCB_NAME} WIN32 MACOSX_BUNDLE ${CVPCB_SRCS} ${CVPCB_RESOURCES})
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2010-01-16 22:32:26 +00:00
|
|
|
###
|
|
|
|
# CvPCB.app creation
|
|
|
|
###
|
2009-04-29 12:10:15 +00:00
|
|
|
if(APPLE)
|
2010-01-16 22:32:26 +00:00
|
|
|
set_target_properties(${CVPCB_NAME} PROPERTIES MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist)
|
2009-04-29 12:10:15 +00:00
|
|
|
endif(APPLE)
|
|
|
|
|
2010-02-08 18:15:42 +00:00
|
|
|
target_link_libraries(${CVPCB_NAME} 3d-viewer common pcbcommon polygon bitmaps kbool
|
|
|
|
${OPENGL_LIBRARIES} ${wxWidgets_LIBRARIES} ${GDI_PLUS_LIBRARIES})
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2010-01-16 22:32:26 +00:00
|
|
|
install(TARGETS ${CVPCB_NAME}
|
2008-09-14 11:46:58 +00:00
|
|
|
DESTINATION ${KICAD_BIN}
|
2008-06-15 16:31:32 +00:00
|
|
|
COMPONENT binary)
|