in reply to Re^3: Running PPM on Win 2k3 64b
in thread Running PPM on Win 2k3 64b
I have my "Microsoft Platform SDK for Windows Server 2003 R2" installed in C:\_64\Platform_SDK .
I have a batch file (sdk.bat) that contains the followng 2 lines
set INCLUDE= C:\_64\Platform_SDK\SetEnv.cmd /XP64 /RETAIL
To use that compiler, I just run 'sdk.bat' from the command line, and that sets up the environment correctly so that things like nmake (which is located in C:\_64\Platform_SDK\Bin) get found automatically.
The first line of that batch file simply clears the existing INCLUDE setting. The "XP64" part is obviously the right thing to specify on XP - and it's the right thing to specify on Vista.
Note, the SetEnv.cmd file actually notes in the beginning of the file the proper flag to use for various Windows OS versions, if unsure what it should be check that file before creating your batch.
|
|---|