2007-11-08 07:17:37 +00:00
|
|
|
ADD_DEFINITIONS(-DGERBVIEW -DPCBNEW)
|
|
|
|
|
|
|
|
INCLUDE_DIRECTORIES(
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
../3d-viewer
|
|
|
|
../cvpcb
|
2007-12-29 19:15:58 +00:00
|
|
|
../pcbnew
|
|
|
|
../polygon)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
|
|
|
SET(GERBVIEW_SRCS
|
|
|
|
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
|
|
|
|
reglage.cpp
|
|
|
|
rs274d.cpp
|
|
|
|
rs274x.cpp
|
|
|
|
select_layers_to_pcb.cpp
|
|
|
|
set_color.cpp
|
|
|
|
tool_gerber.cpp
|
|
|
|
tracepcb.cpp
|
|
|
|
trpiste.cpp
|
|
|
|
undelete.cpp)
|
|
|
|
|
|
|
|
SET(GERBVIEW_EXTRA_SRCS
|
|
|
|
../pcbnew/basepcbframe.cpp
|
|
|
|
../pcbnew/class_board.cpp
|
2008-01-14 19:24:41 +00:00
|
|
|
../pcbnew/class_drawsegment.cpp
|
2007-12-09 14:13:34 +00:00
|
|
|
../pcbnew/class_drc_item.cpp
|
2007-11-08 07:17:37 +00:00
|
|
|
../pcbnew/class_marker.cpp
|
|
|
|
../pcbnew/class_pcb_text.cpp
|
|
|
|
../pcbnew/class_track.cpp
|
2007-12-30 03:30:34 +00:00
|
|
|
../pcbnew/class_zone.cpp
|
2007-11-08 07:17:37 +00:00
|
|
|
../pcbnew/classpcb.cpp
|
|
|
|
../pcbnew/collectors.cpp
|
|
|
|
../pcbnew/sel_layer.cpp
|
|
|
|
|
|
|
|
../share/drawframe.cpp
|
|
|
|
../share/drawpanel.cpp
|
|
|
|
../share/infospgm.cpp
|
|
|
|
../share/setpage.cpp
|
|
|
|
../share/wxprint.cpp
|
|
|
|
../share/zoom.cpp)
|
|
|
|
|
|
|
|
IF(WIN32)
|
2007-12-26 03:48:17 +00:00
|
|
|
IF(MINGW)
|
|
|
|
# resource compilation for mingw (http://www.cmake.org/Bug/view.php?id=4068)
|
|
|
|
ADD_CUSTOM_COMMAND(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/gerbview_rc.o
|
|
|
|
COMMAND windres.exe -I ${CMAKE_CURRENT_SOURCE_DIR}
|
|
|
|
-i ${CMAKE_CURRENT_SOURCE_DIR}/gerbview.rc
|
|
|
|
-o ${CMAKE_CURRENT_BINARY_DIR}/gerbview_rc.o)
|
|
|
|
SET(GERBVIEW_RESOURCES ${CMAKE_CURRENT_BINARY_DIR}/gerbview_rc.o)
|
|
|
|
ELSE(MINGW)
|
|
|
|
SET(GERBVIEW_RESOURCES gerbview.rc)
|
|
|
|
ENDIF(MINGW)
|
2007-11-08 07:17:37 +00:00
|
|
|
ENDIF(WIN32)
|
|
|
|
IF(APPLE)
|
|
|
|
SET(GERBVIEW_RESOURCES gerbview.r)
|
|
|
|
ENDIF(APPLE)
|
|
|
|
|
|
|
|
ADD_EXECUTABLE(gerbview WIN32 MACOSX_BUNDLE ${GERBVIEW_SRCS} ${GERBVIEW_EXTRA_SRCS} ${GERBVIEW_RESOURCES})
|
|
|
|
|
2007-12-30 03:30:34 +00:00
|
|
|
TARGET_LINK_LIBRARIES(gerbview common 3d-viewer polygon ${wxWidgets_LIBRARIES})
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2008-01-06 10:11:28 +00:00
|
|
|
INSTALL(TARGETS gerbview RUNTIME DESTINATION ${KICAD_BIN} COMPONENT binary)
|