Skip to content

Commit 5a68c34

Browse files
author
timlinux
committedNov 21, 2007
More updates in the quest to document the 'simplified' setup procedure using my qgis libs bundle.
git-svn-id: http://svn.osgeo.org/qgis/trunk@7631 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 18a0c71 commit 5a68c34

File tree

1 file changed

+73
-5
lines changed

1 file changed

+73
-5
lines changed
 

‎INSTALL.t2t

Lines changed: 73 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1507,9 +1507,13 @@ Microsoft Windows Core SDK
15071507
+ Source Code (No)
15081508
+ AMD 64 Source (No)
15091509
+ Intel 64 Source (No)
1510-
Microsoft Web Workshop (No)
1510+
Microsoft Web Workshop (Yes) (needed for shlwapi.h)
1511+
+ Build Environment (Yes)
1512+
+ Documentation (No)
1513+
+ Sample Code (No)
1514+
+ Tools (No)
15111515
Microsoft Internet Information Server (IIS) SDK (No)
1512-
Microsoft Data Access Services (MDAC) SDK
1516+
Microsoft Data Access Services (MDAC) SDK (Yes) (needed by GDAL for odbc)
15131517
+ Tools
15141518
+ Tools (AMD 64 Bit) (No)
15151519
+ Tools (AMD 64 Bit) (No)
@@ -1536,6 +1540,15 @@ objection to installing this software on their computers. If you are one
15361540
of them you should probably consider using the MINGW build instructions
15371541
described elsewhere in this document.
15381542

1543+
1544+
The SDK installs a directory called
1545+
1546+
```
1547+
C:\Office10
1548+
```
1549+
1550+
Which you can safely remove.
1551+
15391552
After the SDK is installed, follow the remaining notes on the page link
15401553
above to get your MSVC Express environment configured correctly. For your
15411554
convenience, these are summarised again below, and I have added a couple
@@ -1614,7 +1627,7 @@ and replace it with this one:
16141627
@rem added by Tim
16151628
@set INCLUDE=C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Include;%INCLUDE%
16161629
@set INCLUDE=C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Include\mfc;%INCLUDE%
1617-
@set INCLUDE=%INCLUDE%;C:\dev\cpp\qgislibs-release\include\postgres
1630+
@set INCLUDE=%INCLUDE%;C:\dev\cpp\qgislibs-release\include\postgresql
16181631
@set LIB=C:\Program Files\Microsoft Visual Studio 8\VC\LIB;C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\lib;%LIB%
16191632
@rem added by Tim
16201633
@set LIB=C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Lib;%LIB%
@@ -1690,6 +1703,10 @@ nmake install
16901703
Add -qt-sql-odbc -qt-sql-psql to the configure line if your want odbc and
16911704
PostgreSQL support build into Qt.
16921705

1706+
/!\ Note: For me in some cases I got a build error on qscreenshot.pro. If you
1707+
are only interested in having the libraries needed for building Qt apps, you
1708+
can probably ignore that. Just check in c:\Qt\4.3.2\bin to check all dlls and
1709+
helper apps (assistant etc) have been made.
16931710

16941711
=== Configure Visual C++ to use Qt ===
16951712

@@ -1727,7 +1744,7 @@ Hint: You can also add
17271744
QString = t=<d->data, su>, size=<d->size, i>
17281745
```
17291746

1730-
to AutoExp.DAT in C:\Program Files\Microsoft Visual Studio 8\Common7\Packages\Debugger in front of
1747+
to AutoExp.DAT in C:\Program Files\Microsoft Visual Studio 8\Common7\Packages\Debugger before
17311748

17321749
```
17331750
[Visualizer]
@@ -1784,9 +1801,55 @@ som misleadingly named similar downloads. Easiest is to just get this file:
17841801

17851802
http://subversion.tigris.org/downloads/1.4.5-win32/apache-2.2/svn-win32-1.4.5.zip
17861803

1804+
Extract the zip file to
17871805

1806+
```
1807+
C:\Program Files\svn
1808+
```
17881809

1810+
And then add
17891811

1812+
```
1813+
C:\Program Files\svn\bin
1814+
```
1815+
1816+
To your path.
1817+
1818+
1819+
== Initial SVN Check out ==
1820+
1821+
Open a cmd.exe window and do:
1822+
1823+
1824+
```
1825+
cd \
1826+
cd dev
1827+
cd cpp
1828+
svn co https://svn.qgis.org/repos/qgis/trunk/qgis
1829+
```
1830+
1831+
At this point you will probably get a message like this:
1832+
1833+
```
1834+
C:\dev\cpp>svn co https://svn.qgis.org/repos/qgis/trunk/qgis
1835+
Error validating server certificate for 'https://svn.qgis.org:443':
1836+
- The certificate is not issued by a trusted authority. Use the
1837+
fingerprint to validate the certificate manually!
1838+
Certificate information:
1839+
- Hostname: svn.qgis.org
1840+
- Valid: from Sat, 01 Apr 2006 03:30:47 GMT until Fri, 21 Mar 2008 03:30:47 GMT
1841+
- Issuer: Developer Team, Quantum GIS, Anchorage, Alaska, US
1842+
- Fingerprint: 2f:cd:f1:5a:c7:64:da:2b:d1:34:a5:20:c6:15:67:28:33:ea:7a:9b
1843+
(R)eject, accept (t)emporarily or accept (p)ermanently?
1844+
```
1845+
1846+
Press 'p' to accept and the svn checkout will commence.
1847+
1848+
== Create Makefiles using cmakesetup.exe ==
1849+
1850+
```
1851+
cd qgis
1852+
```
17901853

17911854

17921855

@@ -1800,11 +1863,16 @@ The following people have contributed to this document:
18001863
- Python additions Martin Dobias 2007
18011864
- With thanks to Tisham Dhar for preparing the initial msys environment
18021865

1803-
- Windows MSVC Section
1866+
- Windows MSVC Section (Detailed install)
18041867
- David Willis 2007
18051868
- MSVC install additions Tim Sutton 2007
18061869
- PostgreSQL, Qt compile, SIP, Python, AutoExp additions Juergen Fischer 2007
18071870

1871+
1872+
- Windows MSVC Section (Simplified install)
1873+
- Tim Sutton 2007
1874+
- Juergen Fischer 2007
1875+
18081876
- OSX Section
18091877
- Tim Sutton, 2007
18101878
- With special thanks to Tom Elwertowski and William Kyngesburye

0 commit comments

Comments
 (0)
Please sign in to comment.