home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 December / PCWKCD1296.iso / vjplusb / activex / inetsdk / setenv.bat < prev    next >
DOS Batch File  |  1996-03-06  |  602b  |  34 lines

  1. @echo off
  2.  
  3. if "%1" == "" goto usage
  4. if "%mstools%" == "" goto warning
  5.  
  6. set Path=%1\bin;%mstools%\bin;%path%
  7. set Lib=%1\lib;%mstools%\lib;%lib%
  8. set Include=%1\include;%mstools%\include;%include%
  9. set INETSDK=%1
  10.  
  11. goto end
  12.  
  13. :usage
  14. echo.
  15. echo Usage: SETENV sdkroot
  16. echo Where: sdkroot specifies where the toolkit was installed
  17. echo Example: SETENV C:\INETSDK
  18. echo.
  19. goto end
  20.  
  21.  
  22. :warning
  23. echo.
  24. echo Warning: Some samples will not build without the most recent Win32 SDK.
  25. echo.
  26.  
  27. set Path=%1\bin;%path%
  28. set Lib=%1\lib;%lib%
  29. set Include=%1\include;%include%
  30. set INETSDK=%1
  31.  
  32.  
  33. :end
  34.