2008-03-11 15:57:54 +00:00
|
|
|
add_definitions(-DCVPCB)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2010-05-16 18:18:38 +00:00
|
|
|
###
|
|
|
|
# Includes
|
|
|
|
###
|
2012-01-23 04:33:36 +00:00
|
|
|
|
|
|
|
include_directories(BEFORE ${INC_BEFORE})
|
|
|
|
include_directories(
|
|
|
|
./dialogs
|
|
|
|
${Boost_INCLUDE_DIR}
|
|
|
|
../3d-viewer
|
|
|
|
../pcbnew
|
|
|
|
../polygon
|
|
|
|
../common
|
|
|
|
${INC_AFTER}
|
|
|
|
)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2010-05-16 18:18:38 +00:00
|
|
|
###
|
|
|
|
# Sources
|
|
|
|
###
|
2010-10-28 13:02:07 +00:00
|
|
|
set(CVPCB_DIALOGS
|
|
|
|
dialogs/dialog_cvpcb_config.cpp
|
|
|
|
dialogs/dialog_cvpcb_config_fbp.cpp
|
|
|
|
dialogs/dialog_display_options.cpp
|
|
|
|
dialogs/dialog_display_options_base.cpp
|
|
|
|
)
|
|
|
|
|
2008-03-11 15:57:54 +00:00
|
|
|
set(CVPCB_SRCS
|
2012-04-25 19:33:24 +00:00
|
|
|
../common/base_units.cpp
|
2013-05-01 19:01:14 +00:00
|
|
|
../pcbnew/board_items_to_polygon_shape_transform.cpp
|
2012-03-15 14:31:16 +00:00
|
|
|
../pcbnew/class_drc_item.cpp
|
2008-01-30 09:42:19 +00:00
|
|
|
autosel.cpp
|
|
|
|
cfg.cpp
|
2010-05-16 18:18:38 +00:00
|
|
|
class_components_listbox.cpp
|
2010-02-01 21:23:27 +00:00
|
|
|
class_DisplayFootprintsFrame.cpp
|
2010-05-16 18:18:38 +00:00
|
|
|
class_footprints_listbox.cpp
|
2013-05-31 17:33:46 +00:00
|
|
|
class_library_listbox.cpp
|
2008-01-30 09:42:19 +00:00
|
|
|
cvframe.cpp
|
|
|
|
cvpcb.cpp
|
|
|
|
listboxes.cpp
|
2010-12-17 20:34:29 +00:00
|
|
|
menubar.cpp
|
2012-02-11 09:04:26 +00:00
|
|
|
readwrite_dlgs.cpp
|
2008-01-30 09:42:19 +00:00
|
|
|
tool_cvpcb.cpp
|
2011-12-07 05:28:49 +00:00
|
|
|
)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2010-05-16 18:18:38 +00:00
|
|
|
###
|
|
|
|
# Windows resource file
|
|
|
|
###
|
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
|
|
|
###
|
2010-05-16 18:18:38 +00:00
|
|
|
# Apple resource files
|
2010-01-16 22:32:26 +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)
|
2008-03-11 15:57:54 +00:00
|
|
|
endif(APPLE)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2010-05-16 18:18:38 +00:00
|
|
|
###
|
|
|
|
# Create the cvpcb executable
|
|
|
|
###
|
|
|
|
add_executable(cvpcb WIN32 MACOSX_BUNDLE
|
2012-01-23 04:53:21 +00:00
|
|
|
${CVPCB_SRCS}
|
|
|
|
${CVPCB_DIALOGS}
|
|
|
|
${CVPCB_RESOURCES}
|
|
|
|
)
|
2007-11-08 07:17:37 +00:00
|
|
|
|
2010-01-16 22:32:26 +00:00
|
|
|
###
|
2010-05-16 18:18:38 +00:00
|
|
|
# Set properties for APPLE on cvpcb target
|
2010-01-16 22:32:26 +00:00
|
|
|
###
|
2009-04-29 12:10:15 +00:00
|
|
|
if(APPLE)
|
2010-05-16 18:18:38 +00:00
|
|
|
set_target_properties(cvpcb PROPERTIES MACOSX_BUNDLE_INFO_PLIST ${CMAKE_CURRENT_SOURCE_DIR}/Info.plist)
|
2009-04-29 12:10:15 +00:00
|
|
|
endif(APPLE)
|
|
|
|
|
2010-05-16 18:18:38 +00:00
|
|
|
###
|
|
|
|
# Link executable target cvpcb with correct libraries
|
|
|
|
###
|
2012-01-23 04:53:21 +00:00
|
|
|
target_link_libraries(cvpcb
|
|
|
|
3d-viewer
|
|
|
|
pcbcommon
|
2012-12-29 09:54:25 +00:00
|
|
|
pcad2kicadpcb
|
2012-01-23 04:53:21 +00:00
|
|
|
common
|
|
|
|
bitmaps
|
2012-01-25 14:56:52 +00:00
|
|
|
polygon
|
2012-01-23 04:53:21 +00:00
|
|
|
${wxWidgets_LIBRARIES}
|
2012-01-25 14:56:52 +00:00
|
|
|
${OPENGL_LIBRARIES}
|
2012-01-23 04:53:21 +00:00
|
|
|
${GDI_PLUS_LIBRARIES}
|
|
|
|
)
|
|
|
|
|
Introduction of Graphics Abstraction Layer based rendering for pcbnew.
New classes:
- VIEW - represents view that is seen by user, takes care of layer ordering & visibility and how it is displayed (which location, how much zoomed, etc.)
- VIEW_ITEM - Base class for every item that can be displayed on VIEW (the biggest change is that now it may be necessary to override ViewBBox & ViewGetLayers method for derived classes).
- EDA_DRAW_PANEL_GAL - Inherits after EDA_DRAW_PANEL, displays VIEW output, right now it is not editable (in opposite to usual EDA_DRAW_PANEL).
- GAL/OPENGL_GAL/CAIRO_GAL - Base Graphics Abstraction Layer class + two different flavours (Cairo is not fully supported yet), that offers methods to draw primitives using different libraries.
- WX_VIEW_CONTROLS - Controller for VIEW, handles user events, allows zooming, panning, etc.
- PAINTER/PCB_PAINTER - Classes that uses GAL interface to draw items (as you may have already guessed - PCB_PAINTER is a class for drawing PCB specific object, PAINTER is an abstract class). Its methods are invoked by VIEW, when an item has to be drawn. To display a new type of item - you need to implement draw(ITEM_TYPE*) method that draws it using GAL methods.
- STROKE_FONT - Implements stroke font drawing using GAL methods.
Most important changes to Kicad original code:
* EDA_ITEM now inherits from VIEW_ITEM, which is a base class for all drawable objects.
* EDA_DRAW_FRAME contains both usual EDA_DRAW_PANEL and new EDA_DRAW_PANEL_GAL, that can be switched anytime.
* There are some new layers for displaying multilayer pads, vias & pads holes (these are not shown yet on the right sidebar in pcbnew)
* Display order of layers is different than in previous versions (if you are curious - you may check m_galLayerOrder@pcbnew/basepcbframe.cpp). Preserving usual order would result in not very natural display, such as showing silkscreen texts on the bottom.
* Introduced new hotkey (Alt+F12) and new menu option (View->Switch canvas) for switching canvas during runtime.
* Some of classes (mostly derived from BOARD_ITEM) now includes ViewBBox & ViewGetLayers methods.
* Removed tools/class_painter.h, as now it is extended and included in source code.
Build changes:
* GAL-based rendering option is turned on by a new compilation CMake option KICAD_GAL.
* When compiling with CMake option KICAD_GAL=ON, GLEW and Cairo libraries are required.
* GAL-related code is compiled into a static library (common/libgal).
* Build with KICAD_GAL=OFF should not need any new libraries and should come out as a standard version of Kicad
Currently most of items in pcbnew can be displayed using OpenGL (to be done are DIMENSIONS and MARKERS).
More details about GAL can be found in: http://www.ohwr.org/attachments/1884/view-spec.pdf
2013-04-02 06:54:03 +00:00
|
|
|
target_link_libraries(cvpcb
|
2013-04-09 14:12:18 +00:00
|
|
|
gal
|
|
|
|
${GLEW_LIBRARIES}
|
|
|
|
${CAIRO_LIBRARIES}
|
Introduction of Graphics Abstraction Layer based rendering for pcbnew.
New classes:
- VIEW - represents view that is seen by user, takes care of layer ordering & visibility and how it is displayed (which location, how much zoomed, etc.)
- VIEW_ITEM - Base class for every item that can be displayed on VIEW (the biggest change is that now it may be necessary to override ViewBBox & ViewGetLayers method for derived classes).
- EDA_DRAW_PANEL_GAL - Inherits after EDA_DRAW_PANEL, displays VIEW output, right now it is not editable (in opposite to usual EDA_DRAW_PANEL).
- GAL/OPENGL_GAL/CAIRO_GAL - Base Graphics Abstraction Layer class + two different flavours (Cairo is not fully supported yet), that offers methods to draw primitives using different libraries.
- WX_VIEW_CONTROLS - Controller for VIEW, handles user events, allows zooming, panning, etc.
- PAINTER/PCB_PAINTER - Classes that uses GAL interface to draw items (as you may have already guessed - PCB_PAINTER is a class for drawing PCB specific object, PAINTER is an abstract class). Its methods are invoked by VIEW, when an item has to be drawn. To display a new type of item - you need to implement draw(ITEM_TYPE*) method that draws it using GAL methods.
- STROKE_FONT - Implements stroke font drawing using GAL methods.
Most important changes to Kicad original code:
* EDA_ITEM now inherits from VIEW_ITEM, which is a base class for all drawable objects.
* EDA_DRAW_FRAME contains both usual EDA_DRAW_PANEL and new EDA_DRAW_PANEL_GAL, that can be switched anytime.
* There are some new layers for displaying multilayer pads, vias & pads holes (these are not shown yet on the right sidebar in pcbnew)
* Display order of layers is different than in previous versions (if you are curious - you may check m_galLayerOrder@pcbnew/basepcbframe.cpp). Preserving usual order would result in not very natural display, such as showing silkscreen texts on the bottom.
* Introduced new hotkey (Alt+F12) and new menu option (View->Switch canvas) for switching canvas during runtime.
* Some of classes (mostly derived from BOARD_ITEM) now includes ViewBBox & ViewGetLayers methods.
* Removed tools/class_painter.h, as now it is extended and included in source code.
Build changes:
* GAL-based rendering option is turned on by a new compilation CMake option KICAD_GAL.
* When compiling with CMake option KICAD_GAL=ON, GLEW and Cairo libraries are required.
* GAL-related code is compiled into a static library (common/libgal).
* Build with KICAD_GAL=OFF should not need any new libraries and should come out as a standard version of Kicad
Currently most of items in pcbnew can be displayed using OpenGL (to be done are DIMENSIONS and MARKERS).
More details about GAL can be found in: http://www.ohwr.org/attachments/1884/view-spec.pdf
2013-04-02 06:54:03 +00:00
|
|
|
)
|
2013-04-09 14:12:18 +00:00
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
target_link_libraries(cvpcb
|
|
|
|
opengl32
|
|
|
|
glu32
|
|
|
|
pixman-1
|
|
|
|
fontconfig
|
|
|
|
freetype
|
|
|
|
bz2
|
|
|
|
)
|
|
|
|
endif(WIN32)
|
Introduction of Graphics Abstraction Layer based rendering for pcbnew.
New classes:
- VIEW - represents view that is seen by user, takes care of layer ordering & visibility and how it is displayed (which location, how much zoomed, etc.)
- VIEW_ITEM - Base class for every item that can be displayed on VIEW (the biggest change is that now it may be necessary to override ViewBBox & ViewGetLayers method for derived classes).
- EDA_DRAW_PANEL_GAL - Inherits after EDA_DRAW_PANEL, displays VIEW output, right now it is not editable (in opposite to usual EDA_DRAW_PANEL).
- GAL/OPENGL_GAL/CAIRO_GAL - Base Graphics Abstraction Layer class + two different flavours (Cairo is not fully supported yet), that offers methods to draw primitives using different libraries.
- WX_VIEW_CONTROLS - Controller for VIEW, handles user events, allows zooming, panning, etc.
- PAINTER/PCB_PAINTER - Classes that uses GAL interface to draw items (as you may have already guessed - PCB_PAINTER is a class for drawing PCB specific object, PAINTER is an abstract class). Its methods are invoked by VIEW, when an item has to be drawn. To display a new type of item - you need to implement draw(ITEM_TYPE*) method that draws it using GAL methods.
- STROKE_FONT - Implements stroke font drawing using GAL methods.
Most important changes to Kicad original code:
* EDA_ITEM now inherits from VIEW_ITEM, which is a base class for all drawable objects.
* EDA_DRAW_FRAME contains both usual EDA_DRAW_PANEL and new EDA_DRAW_PANEL_GAL, that can be switched anytime.
* There are some new layers for displaying multilayer pads, vias & pads holes (these are not shown yet on the right sidebar in pcbnew)
* Display order of layers is different than in previous versions (if you are curious - you may check m_galLayerOrder@pcbnew/basepcbframe.cpp). Preserving usual order would result in not very natural display, such as showing silkscreen texts on the bottom.
* Introduced new hotkey (Alt+F12) and new menu option (View->Switch canvas) for switching canvas during runtime.
* Some of classes (mostly derived from BOARD_ITEM) now includes ViewBBox & ViewGetLayers methods.
* Removed tools/class_painter.h, as now it is extended and included in source code.
Build changes:
* GAL-based rendering option is turned on by a new compilation CMake option KICAD_GAL.
* When compiling with CMake option KICAD_GAL=ON, GLEW and Cairo libraries are required.
* GAL-related code is compiled into a static library (common/libgal).
* Build with KICAD_GAL=OFF should not need any new libraries and should come out as a standard version of Kicad
Currently most of items in pcbnew can be displayed using OpenGL (to be done are DIMENSIONS and MARKERS).
More details about GAL can be found in: http://www.ohwr.org/attachments/1884/view-spec.pdf
2013-04-02 06:54:03 +00:00
|
|
|
|
2010-05-16 18:18:38 +00:00
|
|
|
###
|
|
|
|
# Add cvpcb as install target
|
|
|
|
###
|
|
|
|
install(TARGETS cvpcb
|
2008-09-14 11:46:58 +00:00
|
|
|
DESTINATION ${KICAD_BIN}
|
2008-06-15 16:31:32 +00:00
|
|
|
COMPONENT binary)
|