home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Graphics / Graphics.zip / mgl5src1.zip / mgl / bin / vc40-drvnt.bat < prev    next >
DOS Batch File  |  2002-08-21  |  517b  |  19 lines

  1. @echo off
  2. REM Setup environment variables for Visual C++ 4.2 32 bit edition
  3.  
  4. REM: First setup for Win32 console development (with Platform SDK)
  5. call vc40-c32.bat sdk > NUL
  6.  
  7. REM: Extra stuff to set up for Windows NT DDK development
  8. SET BASEDIR=%NT_DDKROOT%
  9. SET PATH=%NT_DDKROOT%\bin;%PATH%
  10.  
  11. if .%CHECKED%==.1 goto checked_build
  12. echo Release build enabled.
  13. goto done
  14. :checked_build
  15. echo Checked debug build enabled.
  16. goto done
  17. :done
  18. echo Visual C++ 4.2 Windows NT driver compilation environment set up
  19.