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
|
|
|
|
../polygon)
|
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
|
|
|
|
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
|
|
|
|
displayframe.cpp
|
|
|
|
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
|
|
|
|
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)
|
|
|
|
set(MACOSX_BUNDLE_NAME cvpcb)
|
2008-03-11 15:57:54 +00:00
|
|
|
endif(APPLE)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2009-04-23 15:02:18 +00:00
|
|
|
add_executable(cvpcb WIN32 MACOSX_BUNDLE ${CVPCB_SRCS} ${CVPCB_RESOURCES})
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2009-04-29 12:10:15 +00:00
|
|
|
if(APPLE)
|
|
|
|
set_target_properties(cvpcb PROPERTIES MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist)
|
|
|
|
endif(APPLE)
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
target_link_libraries(cvpcb 3d-viewer common pcbcommon polygon bitmaps kbool ${OPENGL_LIBRARIES} ${wxWidgets_LIBRARIES})
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2008-09-07 19:32:07 +00:00
|
|
|
install(TARGETS cvpcb
|
2008-09-14 11:46:58 +00:00
|
|
|
DESTINATION ${KICAD_BIN}
|
2008-06-15 16:31:32 +00:00
|
|
|
COMPONENT binary)
|