2008-03-11 15:57:54 +00:00
|
|
|
add_definitions(-DGERBVIEW -DPCBNEW)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2008-03-11 15:57:54 +00:00
|
|
|
include_directories(
|
2008-01-30 09:42:19 +00:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
../3d-viewer
|
|
|
|
../cvpcb
|
|
|
|
../pcbnew
|
|
|
|
../polygon)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2008-03-11 15:57:54 +00:00
|
|
|
set(GERBVIEW_SRCS
|
2008-01-30 09:42:19 +00:00
|
|
|
affiche.cpp
|
|
|
|
block.cpp
|
|
|
|
controle.cpp
|
|
|
|
dcode.cpp
|
|
|
|
deltrack.cpp
|
|
|
|
edit.cpp
|
|
|
|
export_to_pcbnew.cpp
|
|
|
|
files.cpp
|
|
|
|
gerberframe.cpp
|
|
|
|
gerbview_config.cpp
|
|
|
|
gerbview.cpp
|
|
|
|
hotkeys.cpp
|
|
|
|
initpcb.cpp
|
|
|
|
lay2plot.cpp
|
|
|
|
locate.cpp
|
|
|
|
onrightclick.cpp
|
|
|
|
options.cpp
|
|
|
|
pcbplot.cpp
|
|
|
|
# pcbtexte.cpp
|
|
|
|
# process_config.cpp
|
|
|
|
readgerb.cpp
|
2008-01-28 05:49:15 +00:00
|
|
|
reglage.cpp
|
2008-01-30 09:42:19 +00:00
|
|
|
rs274d.cpp
|
|
|
|
rs274x.cpp
|
|
|
|
select_layers_to_pcb.cpp
|
|
|
|
set_color.cpp
|
2008-06-06 12:39:00 +00:00
|
|
|
# struct.cpp <-- not used
|
2008-01-30 09:42:19 +00:00
|
|
|
tool_gerber.cpp
|
|
|
|
tracepcb.cpp
|
|
|
|
trpiste.cpp
|
|
|
|
undelete.cpp)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2008-03-11 15:57:54 +00:00
|
|
|
set(GERBVIEW_EXTRA_SRCS
|
2008-01-30 09:42:19 +00:00
|
|
|
../pcbnew/basepcbframe.cpp
|
|
|
|
../pcbnew/class_board.cpp
|
|
|
|
../pcbnew/class_drawsegment.cpp
|
|
|
|
../pcbnew/class_drc_item.cpp
|
|
|
|
../pcbnew/class_marker.cpp
|
|
|
|
../pcbnew/class_pcb_text.cpp
|
|
|
|
../pcbnew/class_track.cpp
|
|
|
|
../pcbnew/class_zone.cpp
|
|
|
|
../pcbnew/classpcb.cpp
|
|
|
|
../pcbnew/collectors.cpp
|
|
|
|
../pcbnew/sel_layer.cpp
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2008-01-30 09:42:19 +00:00
|
|
|
../share/drawframe.cpp
|
|
|
|
../share/drawpanel.cpp
|
|
|
|
../share/setpage.cpp
|
|
|
|
../share/wxprint.cpp
|
|
|
|
../share/zoom.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
|
|
|
# GERBVIEW_RESOURCES variable is set by the macro.
|
2008-04-13 19:07:32 +00:00
|
|
|
mingw_resource_compiler(gerbview)
|
2008-03-11 15:57:54 +00:00
|
|
|
else(MINGW)
|
|
|
|
set(GERBVIEW_RESOURCES gerbview.rc)
|
|
|
|
endif(MINGW)
|
|
|
|
endif(WIN32)
|
|
|
|
if(APPLE)
|
2008-06-15 16:31:32 +00:00
|
|
|
set(GERBVIEW_RESOURCES gerbview.icns)
|
|
|
|
set_source_files_properties("${CMAKE_CURRENT_SOURCE_DIR}/gerbview.icns"
|
2008-06-21 08:55:39 +00:00
|
|
|
PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
|
2008-06-15 16:31:32 +00:00
|
|
|
|
|
|
|
set(MACOSX_BUNDLE_ICON_FILE gerbview.icns)
|
|
|
|
set(MACOSX_BUNDLE_GUI_IDENTIFIER org.kicad-eda.gerbview)
|
|
|
|
set(MACOSX_BUNDLE_NAME gerbview)
|
2008-03-11 15:57:54 +00:00
|
|
|
endif(APPLE)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2008-03-11 15:57:54 +00:00
|
|
|
add_executable(gerbview WIN32 MACOSX_BUNDLE ${GERBVIEW_SRCS} ${GERBVIEW_EXTRA_SRCS} ${GERBVIEW_RESOURCES})
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2008-05-30 18:06:21 +00:00
|
|
|
target_link_libraries(gerbview 3d-viewer common polygon kbool bitmaps ${wxWidgets_LIBRARIES})
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2008-06-21 08:55:39 +00:00
|
|
|
if(NOT APPLE)
|
|
|
|
install(TARGETS gerbview
|
|
|
|
RUNTIME DESTINATION ${KICAD_BIN}
|
|
|
|
COMPONENT binary)
|
|
|
|
else(NOT APPLE)
|
|
|
|
install(TARGETS gerbview
|
2008-06-15 16:31:32 +00:00
|
|
|
RUNTIME DESTINATION ${KICAD_BIN}
|
|
|
|
BUNDLE DESTINATION ${KICAD_BIN}
|
|
|
|
COMPONENT binary)
|
2008-06-21 08:55:39 +00:00
|
|
|
endif(NOT APPLE)
|