kicad/gerbview/CMakeLists.txt

118 lines
2.9 KiB
CMake
Raw Normal View History

2008-03-11 15:57:54 +00:00
add_definitions(-DGERBVIEW -DPCBNEW)
2010-05-16 18:18:38 +00:00
###
# Includes
###
include_directories(${CMAKE_CURRENT_SOURCE_DIR}
${Boost_INCLUDE_DIR}
../3d-viewer
../common
../cvpcb
../pcbnew
../polygon)
2010-05-16 18:18:38 +00:00
###
# Sources
###
set(DIALOGS_SRCS
dialogs/gerbview_dialog_display_options_frame_base.cpp
dialogs/gerbview_dialog_display_options_frame.cpp
dialogs/dialog_print_using_printer.cpp
dialogs/dialog_print_using_printer_base.cpp
)
2008-03-11 15:57:54 +00:00
set(GERBVIEW_SRCS
block.cpp
2010-11-30 20:41:35 +00:00
class_am_param.cpp
class_aperture_macro.cpp
class_DCodeSelectionbox.cpp
2010-09-28 14:42:05 +00:00
class_GERBER.cpp
class_gerber_draw_item.cpp
class_gerbview_layer_widget.cpp
controle.cpp
dcode.cpp
dummy_functions.cpp
draw_gerber_screen.cpp
edit.cpp
export_to_pcbnew.cpp
files.cpp
gerberframe.cpp
gerbview_config.cpp
gerbview.cpp
hotkeys.cpp
initpcb.cpp
locate.cpp
menubar.cpp
onrightclick.cpp
options.cpp
pcbplot.cpp
readgerb.cpp
rs274_read_XY_and_IJ_coordinates.cpp
rs274d.cpp
rs274x.cpp
select_layers_to_pcb.cpp
toolbars_gerber.cpp )
2010-05-16 18:18:38 +00:00
###
# We need some extra sources from pcbnew
###
2008-03-11 15:57:54 +00:00
set(GERBVIEW_EXTRA_SRCS
../pcbnew/layer_widget.cpp
../pcbnew/printout_controler.cpp
)
2010-05-16 18:18:38 +00:00
###
# Windows resource file
###
2008-03-11 15:57:54 +00:00
if(WIN32)
if(MINGW)
# GERBVIEW_RESOURCES variable is set by the macro.
mingw_resource_compiler(gerbview)
2008-03-11 15:57:54 +00:00
else(MINGW)
set(GERBVIEW_RESOURCES gerbview.rc)
endif(MINGW)
endif(WIN32)
2010-05-16 18:18:38 +00:00
###
# Apple resource files
###
2008-03-11 15:57:54 +00:00
if(APPLE)
set(GERBVIEW_RESOURCES gerbview.icns gerbview_doc.icns)
2008-06-15 16:31:32 +00:00
set_source_files_properties("${CMAKE_CURRENT_SOURCE_DIR}/gerbview.icns"
PROPERTIES MACOSX_PACKAGE_LOCATION Resources)
set_source_files_properties("${CMAKE_CURRENT_SOURCE_DIR}/gerbview_doc.icns"
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)
2008-03-11 15:57:54 +00:00
endif(APPLE)
2010-05-16 18:18:38 +00:00
###
# Create the gerbview executable
###
add_executable(gerbview WIN32 MACOSX_BUNDLE
${GERBVIEW_SRCS}
${DIALOGS_SRCS}
${GERBVIEW_EXTRA_SRCS}
2010-05-16 18:18:38 +00:00
${GERBVIEW_RESOURCES})
2010-05-16 18:18:38 +00:00
###
# Set properties for APPLE on gerbview target
###
if(APPLE)
2010-05-16 18:18:38 +00:00
set_target_properties(gerbview PROPERTIES MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist)
endif(APPLE)
2010-05-16 18:18:38 +00:00
###
# Link executable target gerbview with correct libraries
###
target_link_libraries(gerbview common pcbcommon 3d-viewer polygon bitmaps kbool
${OPENGL_LIBRARIES}
${wxWidgets_LIBRARIES}
${GDI_PLUS_LIBRARIES})
2010-05-16 18:18:38 +00:00
###
# Add gerbview as install target
###
install(TARGETS gerbview
2008-09-14 11:46:58 +00:00
DESTINATION ${KICAD_BIN}
2008-06-15 16:31:32 +00:00
COMPONENT binary)