Skip to content

Commit 85db347

Browse files
authored
Fixed file path names in msvc6 build instructions (TheSuperHackers#22)
* fixed file path names in build_with_msvc6.md * fixed CL.exe file paths * fixed ATL path
1 parent 58d33ab commit 85db347

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

SourceCode/Builds/build_with_msvc6.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Clone the code from WIP OmniBlade -> TheSuperHackers
5858

5959
`git clone https://github.com/OmniBlade/CnC_Generals_Zero_Hour.git`
6060

61-
`cd CnC_Generals_Zero_Hour.git`
61+
`cd CnC_Generals_Zero_Hour`
6262

6363
`git switch blade/cmake-build`
6464

@@ -80,30 +80,30 @@ Execute the setup build environment script. In your cmd type this.
8080
PATH
8181

8282
```shell
83-
C:\<VS6_INSTALL_PATH>\vb98;
84-
C:\<VS6_INSTALL_PATH>\vc98\bin;
85-
C:\<VS6_INSTALL_PATH>\vc98\lib;
86-
C:\<VS6_INSTALL_PATH>\vc98\include;
87-
C:\<VS6_INSTALL_PATH>\common\tools;
88-
C:\<VS6_INSTALL_PATH>\common\msdev98\bin
83+
C:\<VS6_INSTALL_PATH>\VB98;
84+
C:\<VS6_INSTALL_PATH>\VC98\Bin;
85+
C:\<VS6_INSTALL_PATH>\VC98\Lib;
86+
C:\<VS6_INSTALL_PATH>\VC98\Include;
87+
C:\<VS6_INSTALL_PATH>\Common\tools;
88+
C:\<VS6_INSTALL_PATH>\Common\MSDev98\Bin
8989
```
9090

9191
Environment Variables
9292

9393
```shell
94-
set LIB=C:\<VS6_INSTALL_PATH>\vc98\lib;^
95-
C:\<VS6_INSTALL_PATH>\vc98\mfc\lib;^
94+
set LIB=C:\<VS6_INSTALL_PATH>\VC98\Lib;^
95+
C:\<VS6_INSTALL_PATH>\VC98\MFC\Lib;^
9696
C:\<PPROJECT_FOLDER>\build\vc6
9797

98-
set INCLUDE=C:\<VS6_INSTALL_PATH>\vc98\alt\include;^
99-
C:\<VS6_INSTALL_PATH>\vc98\include;^
100-
C:\<VS6_INSTALL_PATH>\vc98\MFC\include;^
101-
C:\<VS6_INSTALL_PATH>\vc98\include
98+
set INCLUDE=C:\<VS6_INSTALL_PATH>\VC98\ATL\Include;^
99+
C:\<VS6_INSTALL_PATH>\VC98\Include;^
100+
C:\<VS6_INSTALL_PATH>\VC98\MFC\Include;^
101+
C:\<VS6_INSTALL_PATH>\VC98\Include
102102

103-
set CC=C:\<VS6_INSTALL_PATH>\vc98\bin\cl.exe
104-
set CXX=C:\<VS6_INSTALL_PATH>\vc98\bin\cl.exe
103+
set CC=C:\<VS6_INSTALL_PATH>\VC98\Bin\CL.exe
104+
set CXX=C:\<VS6_INSTALL_PATH>\VC98\Bin\CL.exe
105105

106-
set MSVCDir=C:\<VS6_INSTALL_PATH>\vc98
106+
set MSVCDir=C:\<VS6_INSTALL_PATH>\VC98
107107
```
108108

109109
### Compiling

0 commit comments

Comments
 (0)