home *** CD-ROM | disk | FTP | other *** search
- rem
- rem VcOsDir is used to help create either a Windows 95 or Windows NT specific path.
- rem
- set VcOsDir=WIN95
- if "%OS%" == "Windows_NT" set VcOsDir=WINNT
-
- rem
- echo Setting environment for using Microsoft Visual C++ tools.
- rem
-
- if "%OS%" == "Windows_NT" set PATH=%MSDevDir%\BIN;%MSVCDir%\BIN;%VSCommonDir%\TOOLS\%VcOsDir%;%VSCommonDir%\TOOLS;%PATH%
- if "%OS%" == "" set PATH="%MSDevDir%\BIN";"%MSVCDir%\BIN";"%VSCommonDir%\TOOLS\%VcOsDir%";"%VSCommonDir%\TOOLS";"%windir%\SYSTEM";"%PATH%"
- set INCLUDE=%MSVCDir%\ATL\INCLUDE;%MSVCDir%\INCLUDE;%MSVCDir%\MFC\INCLUDE;%INCLUDE%
- set LIB=%MSVCDir%\LIB;%MSVCDir%\MFC\LIB;%LIB%
-
- set VcOsDir=
- set VSCommonDir=
-
-