add analysis lib (r11552, r11554, r11557, r11558);some export defs cleanup;fix empty osx_archs error in python config;fix georef plugin name;misc cleanup

git-svn-id: http://svn.osgeo.org/qgis/trunk@11569 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
kyngchaos 2009-09-05 18:21:00 +00:00
parent a4631852f9
commit 3bb542ee60
3 changed files with 553 additions and 196 deletions

File diff suppressed because it is too large Load Diff

View File

@ -186,9 +186,10 @@ GCC_VERSION_leo = 4.0
GCC_VERSION_snow = 4.2
GCC_VERSION = $(GCC_VERSION_$(SDKSYS))
GCC_PREPROCESSOR_DEFINITIONS = CORE_EXPORT= GUI_EXPORT= PYTHON_EXPORT= $(DEFS_$(CONFIGURATION))
GCC_PREPROCESSOR_DEFINITIONS = $(DEFS_$(CONFIGURATION)) $(DEFS_EXPORT)
DEFS_Debug = QGISDEBUG=1
DEFS_Release = NDEBUG
DEFS_EXPORT = CORE_EXPORT= GUI_EXPORT= PYTHON_EXPORT= ANALYSIS_EXPORT=
// use full flags instead of Xcode includes and defs,
// since these are needed in scripts also

View File

@ -15,7 +15,7 @@ if sys.platform == 'darwin':
qt_libs.append("QtSql")
# possibility of universal build of bindings, if more than 1 arch
osx_archs = '@CMAKE_OSX_ARCHITECTURES@'
if osx_archs [-1] == ';' :
if osx_archs and osx_archs [-1] == ';' :
osx_archs = osx_archs [:-1]
if osx_archs.count(';') > 0:
osx_universal = '@CMAKE_OSX_SYSROOT@'