home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / directx / dxsetenv.bat next >
DOS Batch File  |  1997-08-15  |  733b  |  24 lines

  1. @REM               Dxsetenv.bat
  2. @REM
  3. @REM This is used to Set your Environment for DirectX Build.
  4. @REM
  5. @REM **Please set the below set statements to match your environment.**
  6.  
  7.  
  8. @REM set 32 bit C Compiler 
  9. @REM **Please change the below line to point to your C Compiler Path.**
  10. Set C32_ROOT=d:\devstudio\vc
  11.  
  12.  
  13. @REM set DirectX SDK Path
  14. @REM **Please change the below line to point to your DirectX SDK Path.**
  15. Set DXSDKROOT=C:\dxsdk\sdk
  16.  
  17.  
  18. @REM **Please Do not Change paths below.***
  19.  
  20. @REM This is used to set up your Include and Lib Paths.
  21. Set path=%C32_ROOT%\bin;%path%
  22. Set include=%DXSDKROOT%\include;%C32_ROOT%\include;%C32_ROOT%\mfc\include;%include%
  23. Set lib=%DXSDKROOT%\lib;%C32_ROOT%\lib;%C32_ROOT%\mfc\lib;%lib%
  24.