File tree 1 file changed +41
-1
lines changed
1 file changed +41
-1
lines changed Original file line number Diff line number Diff line change @@ -1438,8 +1438,48 @@ of them you should probably consider using the MINGW build instructions
1438
1438
described elsewhere in this document.
1439
1439
1440
1440
After the SDK is installed, follow the remaining notes on the page link
1441
- above to get your MSVC Express environment configured correctly.
1441
+ above to get your MSVC Express environment configured correctly. For your
1442
+ convenience, these are summarised again below:
1442
1443
1444
+ 1) open Visual Studio Express IDE
1445
+
1446
+ 2) Tools -> Options -> Projects and Solutions -> VC++ Directories
1447
+
1448
+ 3) Add:
1449
+ ```
1450
+ Executable files: C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Bin
1451
+ Include files: C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Include
1452
+ Library files: C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Lib
1453
+ ```
1454
+
1455
+ 4) Close MSVC Express IDE
1456
+
1457
+ 5) Open the following file with notepad:
1458
+
1459
+ ```
1460
+ C:\Program Files\Microsoft Visual Studio 8\VC\VCProjectDefaults\corewin_express.vsprops
1461
+ ```
1462
+
1463
+ and change the property:
1464
+
1465
+ ```
1466
+ AdditionalDependencies="kernel32.lib"
1467
+ ```
1468
+
1469
+ To read:
1470
+
1471
+ ```
1472
+ AdditionalDependencies="kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib"
1473
+ ```
1474
+
1475
+ The notes go on to show how to build a mswin32 application which you can try if you like -
1476
+ I'm not going to recover that here.
1477
+
1478
+
1479
+ == Building Qt4.3.2 ==
1480
+
1481
+ You need a minimum of Qt 4.3.2 here since this is the first version to officially
1482
+ support building the open source version of Qt for windows under MSVC.
1443
1483
1444
1484
1445
1485
You can’t perform that action at this time.
0 commit comments