-
Proficient Member
Compile LevEdit
i'm trying to compile LEV editor
refering to this linkhttps://forum.ragezone.com/f528/ep9-...orial-1007811/
when trying to drag vsvars32.bat on my cmd its shows
Setting environment for using Microsoft Visual Studio .NET 2003 tools.
(If you have another version of Visual Studio or Visual C++ installed and wish
to use its tools from the command line, run vcvars32.bat for that version.)
this the code of my vsvars32.bat
[PHP @Set VSINSTALLDIR=C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\IDE
@Set VCINSTALLDIR=C:\Program Files\Microsoft Visual Studio .NET 2003
@Set RANVC=C:\VSReq
@Set FrameworkDir=C:\Windows\Microsoft.NET\Framework
@Set FrameworkVersion=v1.1.4322
@Set FrameworkSDKDir=C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1
@rem Root of Visual Studio common files.
@if "%VSINSTALLDIR%"=="" goto Usage
@if "%VCINSTALLDIR%"=="" set VCINSTALLDIR=%VSINSTALLDIR%
@rem
@rem Root of Visual Studio ide installed files.
@rem
@Set DevEnvDir=%VSINSTALLDIR%
@rem
@rem Root of Visual C++ installed files.
@rem
@Set MSVCDir=%VCINSTALLDIR%\VC7
@Set RANDxLib=%RANVC%\DxLib\x86
@Set RANDxInclude=%RANVC%\DxInclude
@Set RANInclude=%RANVC%\Include
@Set RANVCLib=%RANVC%\VC\lib
@Set RANVCInclude=%RANVC%\VC\include
@rem
@Echo Setting environment for using Microsoft Visual Studio .NET 2003 tools.
@Echo (If you have another version of Visual Studio or Visual C++ installed and wish
@Echo to use its tools from the command line, run vcvars32.bat for that version.)
@rem
@REM %VCINSTALLDIR%\Common7\Tools dir is added only for real setup.
@Set PATH=%DevEnvDir%;%MSVCDir%\BIN;%VCINSTALLDIR%\Common7\Tools;%VCINSTALLDIR%\Common7\Tools\bin\prerelease;%VCINSTALLDIR%\Common7\Tools\bin;%FrameworkSDKDir%\bin;%FrameworkDir%\%FrameworkVersion%;%PATH%;
@Set INCLUDE=%MSVCDir%\ATLMFC\INCLUDE;%MSVCDir%\INCLUDE;%MSVCDir%\PlatformSDK\include\prerelease;%MSVCDir%\PlatformSDK\include;%FrameworkSDKDir%\include;%INCLUDE%;%RANDxInclude%;%RANInclude%;%RANVCInclude%;
@Set LIB=%RANDxLib%;%MSVCDir%\ATLMFC\LIB;%MSVCDir%\LIB;%MSVCDir%\PlatformSDK\lib\prerelease;%MSVCDir%\PlatformSDK\lib;%FrameworkSDKDir%\lib;%LIB%;%RANVCLib%;
@GoTo end
:Usage
@Echo. VSINSTALLDIR variable is not set.
@Echo.
@Echo SYNTAX: %0
@GoTo end
:end
[/PHP]
-