[QGIS Commit] r14602 - in trunk/qgis: . doc src/mac/Contents
svn_qgis at osgeo.org
svn_qgis at osgeo.org
Sat Nov 13 11:35:20 EST 2010
Author: kyngchaos
Date: 2010-11-13 08:35:20 -0800 (Sat, 13 Nov 2010)
New Revision: 14602
Modified:
trunk/qgis/INSTALL
trunk/qgis/doc/osx.t2t
trunk/qgis/src/mac/Contents/CMakeLists.txt
Log:
add missing configure option;
fix mac build for release source
Modified: trunk/qgis/INSTALL
===================================================================
--- trunk/qgis/INSTALL 2010-11-13 16:16:16 UTC (rev 14601)
+++ trunk/qgis/INSTALL 2010-11-13 16:35:20 UTC (rev 14602)
@@ -1,7 +1,7 @@
Quantum GIS (QGIS)
Building QGIS from source - step by step
-Last update: 20101105
+Last update: 20101113
Last change: 20101028
1. Introduction
@@ -1742,6 +1742,8 @@
cd build
cmake -D CMAKE_INSTALL_PREFIX=~/Applications -D CMAKE_BUILD_TYPE=Release \
-D CMAKE_BUILD_TYPE=MinSizeRel -D WITH_INTERNAL_SPATIALITE=FALSE \
+ -D QWT_LIBRARY=/usr/local/qwt-5.2.1-svn/lib/libqwt.dylib \
+ -D QWT_INCLUDE_DIR=/usr/local/qwt-5.2.1-svn/include \
..
@@ -1755,6 +1757,8 @@
cmake -D CMAKE_INSTALL_PREFIX=~/Applications -D CMAKE_BUILD_TYPE=Release \
-D CMAKE_BUILD_TYPE=MinSizeRel -D WITH_INTERNAL_SPATIALITE=FALSE \
+ -D QWT_LIBRARY=/usr/local/qwt-5.2.1-svn/lib/libqwt.dylib \
+ -D QWT_INCLUDE_DIR=/usr/local/qwt-5.2.1-svn/include \
-D GRASS_PREFIX=/user/local/grass-6.4.0 \
..
@@ -1772,13 +1776,15 @@
cmake -D CMAKE_INSTALL_PREFIX=~/Applications -D CMAKE_BUILD_TYPE=Release \
-D CMAKE_BUILD_TYPE=MinSizeRel -D WITH_INTERNAL_SPATIALITE=FALSE \
+ -D QWT_LIBRARY=/usr/local/qwt-5.2.1-svn/lib/libqwt.dylib \
+ -D QWT_INCLUDE_DIR=/usr/local/qwt-5.2.1-svn/include \
-D CMAKE_OSX_ARCHITECTURES=i386 -D PYTHON_EXECUTABLE=/usr/local/bin/python32 \
..
Bundling note: Older Qt versions may have problems with some Qt plugins and Qgis.
-The way to handle this is bundle Qt inside the Qgis application. You can do this now
-or wait to see if there are immediate crahses when running Qgis. It's also a good
+The way to handle this is to bundle Qt inside the Qgis application. You can do this now
+or wait to see if there are immediate crashes when running Qgis. It's also a good
idea to bundle Qt if you need to copy Qgis to other Macs (where you would have to
install Xcode just so Qt would install!).
Modified: trunk/qgis/doc/osx.t2t
===================================================================
--- trunk/qgis/doc/osx.t2t 2010-11-13 16:16:16 UTC (rev 14601)
+++ trunk/qgis/doc/osx.t2t 2010-11-13 16:35:20 UTC (rev 14602)
@@ -468,6 +468,8 @@
cd build
cmake -D CMAKE_INSTALL_PREFIX=~/Applications -D CMAKE_BUILD_TYPE=Release \
-D CMAKE_BUILD_TYPE=MinSizeRel -D WITH_INTERNAL_SPATIALITE=FALSE \
+-D QWT_LIBRARY=/usr/local/qwt-5.2.1-svn/lib/libqwt.dylib \
+-D QWT_INCLUDE_DIR=/usr/local/qwt-5.2.1-svn/include \
..
```
@@ -481,6 +483,8 @@
```
cmake -D CMAKE_INSTALL_PREFIX=~/Applications -D CMAKE_BUILD_TYPE=Release \
-D CMAKE_BUILD_TYPE=MinSizeRel -D WITH_INTERNAL_SPATIALITE=FALSE \
+-D QWT_LIBRARY=/usr/local/qwt-5.2.1-svn/lib/libqwt.dylib \
+-D QWT_INCLUDE_DIR=/usr/local/qwt-5.2.1-svn/include \
-D GRASS_PREFIX=/user/local/grass-6.4.0 \
..
```
@@ -498,13 +502,15 @@
cmake -D CMAKE_INSTALL_PREFIX=~/Applications -D CMAKE_BUILD_TYPE=Release \
-D CMAKE_BUILD_TYPE=MinSizeRel -D WITH_INTERNAL_SPATIALITE=FALSE \
+-D QWT_LIBRARY=/usr/local/qwt-5.2.1-svn/lib/libqwt.dylib \
+-D QWT_INCLUDE_DIR=/usr/local/qwt-5.2.1-svn/include \
-D CMAKE_OSX_ARCHITECTURES=i386 -D PYTHON_EXECUTABLE=/usr/local/bin/python32 \
..
```
__Bundling note:__ Older Qt versions may have problems with some Qt plugins and Qgis.
-The way to handle this is bundle Qt inside the Qgis application. You can do this now
-or wait to see if there are immediate crahses when running Qgis. It's also a good
+The way to handle this is to bundle Qt inside the Qgis application. You can do this now
+or wait to see if there are immediate crashes when running Qgis. It's also a good
idea to bundle Qt if you need to copy Qgis to other Macs (where you would have to
install Xcode just so Qt would install!).
Modified: trunk/qgis/src/mac/Contents/CMakeLists.txt
===================================================================
--- trunk/qgis/src/mac/Contents/CMakeLists.txt 2010-11-13 16:16:16 UTC (rev 14601)
+++ trunk/qgis/src/mac/Contents/CMakeLists.txt 2010-11-13 16:35:20 UTC (rev 14602)
@@ -4,6 +4,10 @@
SET(COMPLETE_VERSION_WITH_RELEASE_NAME \"${COMPLETE_VERSION}-${RELEASE_NAME}\")
+IF (NOT EXISTS SVN_MARKER)
+ SET (SVN_MARKER ${CMAKE_SOURCE_DIR}/CMakeLists.txt) # Dummy file
+ENDIF (NOT EXISTS SVN_MARKER)
+
ADD_CUSTOM_TARGET(Info.plist ALL
DEPENDS ${SVN_MARKER}
COMMAND ${CMAKE_COMMAND}
More information about the QGIS-commit
mailing list