Fixed a problem with aui lib (now mandatory) in CMakeList.txt (could be not included at link time)

This commit is contained in:
charras 2010-01-26 11:05:30 +00:00
parent 6909843938
commit 323a62fee5
5 changed files with 1270 additions and 1281 deletions

View File

@ -55,14 +55,6 @@ if(KICAD_GOST)
add_definitions(-DKICAD_GOST)
endif(KICAD_GOST)
if(KICAD_AUIMANAGER)
add_definitions(-DKICAD_AUIMANAGER)
endif(KICAD_AUIMANAGER)
if(KICAD_AUITOOLBAR)
add_definitions(-DKICAD_AUITOOLBAR)
endif(KICAD_AUITOOLBAR)
# Locations for install targets.
set(KICAD_BIN bin
CACHE PATH "Location of KiCad binaries.")
@ -133,16 +125,12 @@ check_find_package_result(OPENGL_FOUND "OpenGL")
# application. You can figure out what libraries you need here;
# http://www.wxwidgets.org/manuals/2.8/wx_librarieslist.html
if( KICAD_AUIMANAGER OR KICAD_AUITOOLBAR )
find_package(wxWidgets COMPONENTS gl aui adv html core net base QUIET)
# On Apple only wxwidgets 2.9 or higher doesn't need to find aui part of base
if(APPLE)
find_package(wxWidgets COMPONENTS gl adv html core net base QUIET)
else(APPLE)
find_package(wxWidgets COMPONENTS gl aui adv html core net base QUIET)
endif(APPLE)
else( KICAD_AUIMANAGER OR KICAD_AUITOOLBAR )
find_package(wxWidgets COMPONENTS gl adv html core net base QUIET)
endif( KICAD_AUIMANAGER OR KICAD_AUITOOLBAR )
check_find_package_result(wxWidgets_FOUND "wxWidgets")

View File

@ -6,7 +6,7 @@
#endif
#ifndef KICAD_BUILD_VERSION
#define KICAD_BUILD_VERSION "(2010-01-10)"
#define KICAD_BUILD_VERSION "(2010-01-25)"
#endif
#define VERSION_STABILITY "unstable"

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -16,6 +16,7 @@ endif(APPLE)
# Many of the commented out ones are nested in *.cpp files for dialogs
set(PCBNEW_SRCS
pcbframe.cpp
attribut.cpp
automove.cpp
autoplac.cpp
@ -67,7 +68,6 @@ set(PCBNEW_SRCS
dialog_netlist.cpp
dialog_netlist_fbp.cpp
dialog_pcb_text_properties.cpp
zones_non_copper_type_functions.cpp
dialog_non_copper_zones_properties_base.cpp
dialog_pad_properties.cpp
dialog_pad_properties_base.cpp
@ -109,8 +109,6 @@ set(PCBNEW_SRCS
hotkeys.cpp
initpcb.cpp
ioascii.cpp
print_board_functions.cpp
printout_controler.cpp
layer_widget.cpp
librairi.cpp
loadcmp.cpp
@ -132,7 +130,6 @@ set(PCBNEW_SRCS
netlist.cpp
onleftclick.cpp
onrightclick.cpp
pcbframe.cpp
pcbnew.cpp
pcbnew_config.cpp
pcbplot.cpp
@ -141,6 +138,8 @@ set(PCBNEW_SRCS
plotps.cpp
plotdxf.cpp
plot_rtn.cpp
print_board_functions.cpp
printout_controler.cpp
queue.cpp
ratsnest.cpp
set_color.cpp
@ -166,6 +165,7 @@ set(PCBNEW_SRCS
zones_convert_brd_items_to_polygons.cpp
zone_filling_algorithm.cpp
zones_functions_for_undo_redo.cpp
zones_non_copper_type_functions.cpp
zones_polygons_insulated_copper_islands.cpp
zones_polygons_test_connections.cpp
zones_test_and_combine_areas.cpp