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. |