@@ -1507,9 +1507,13 @@ Microsoft Windows Core SDK
1507
1507
+ Source Code (No)
1508
1508
+ AMD 64 Source (No)
1509
1509
+ 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)
1511
1515
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)
1513
1517
+ Tools
1514
1518
+ Tools (AMD 64 Bit) (No)
1515
1519
+ Tools (AMD 64 Bit) (No)
@@ -1536,6 +1540,15 @@ objection to installing this software on their computers. If you are one
1536
1540
of them you should probably consider using the MINGW build instructions
1537
1541
described elsewhere in this document.
1538
1542
1543
+
1544
+ The SDK installs a directory called
1545
+
1546
+ ```
1547
+ C:\Office10
1548
+ ```
1549
+
1550
+ Which you can safely remove.
1551
+
1539
1552
After the SDK is installed, follow the remaining notes on the page link
1540
1553
above to get your MSVC Express environment configured correctly. For your
1541
1554
convenience, these are summarised again below, and I have added a couple
@@ -1614,7 +1627,7 @@ and replace it with this one:
1614
1627
@rem added by Tim
1615
1628
@set INCLUDE=C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Include;%INCLUDE%
1616
1629
@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
1618
1631
@set LIB=C:\Program Files\Microsoft Visual Studio 8\VC\LIB;C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\lib;%LIB%
1619
1632
@rem added by Tim
1620
1633
@set LIB=C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Lib;%LIB%
@@ -1690,6 +1703,10 @@ nmake install
1690
1703
Add -qt-sql-odbc -qt-sql-psql to the configure line if your want odbc and
1691
1704
PostgreSQL support build into Qt.
1692
1705
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.
1693
1710
1694
1711
=== Configure Visual C++ to use Qt ===
1695
1712
@@ -1727,7 +1744,7 @@ Hint: You can also add
1727
1744
QString = t=<d->data, su>, size=<d->size, i>
1728
1745
```
1729
1746
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
1731
1748
1732
1749
```
1733
1750
[Visualizer]
@@ -1784,9 +1801,55 @@ som misleadingly named similar downloads. Easiest is to just get this file:
1784
1801
1785
1802
http://subversion.tigris.org/downloads/1.4.5-win32/apache-2.2/svn-win32-1.4.5.zip
1786
1803
1804
+ Extract the zip file to
1787
1805
1806
+ ```
1807
+ C:\Program Files\svn
1808
+ ```
1788
1809
1810
+ And then add
1789
1811
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
+ ```
1790
1853
1791
1854
1792
1855
@@ -1800,11 +1863,16 @@ The following people have contributed to this document:
1800
1863
- Python additions Martin Dobias 2007
1801
1864
- With thanks to Tisham Dhar for preparing the initial msys environment
1802
1865
1803
- - Windows MSVC Section
1866
+ - Windows MSVC Section (Detailed install)
1804
1867
- David Willis 2007
1805
1868
- MSVC install additions Tim Sutton 2007
1806
1869
- PostgreSQL, Qt compile, SIP, Python, AutoExp additions Juergen Fischer 2007
1807
1870
1871
+
1872
+ - Windows MSVC Section (Simplified install)
1873
+ - Tim Sutton 2007
1874
+ - Juergen Fischer 2007
1875
+
1808
1876
- OSX Section
1809
1877
- Tim Sutton, 2007
1810
1878
- With special thanks to Tom Elwertowski and William Kyngesburye
0 commit comments