зеркало из https://github.com/mozilla/pjs.git
53 строки
1.5 KiB
Batchfile
Executable File
53 строки
1.5 KiB
Batchfile
Executable File
@echo off
|
||
|
||
SET MOZ_MSVCVERSION=8
|
||
|
||
SET MOZILLABUILDDRIVE=%~d0%
|
||
SET MOZILLABUILDPATH=%~p0%
|
||
SET MOZILLABUILD=%MOZILLABUILDDRIVE%%MOZILLABUILDPATH%
|
||
|
||
echo "Mozilla tools directory: %MOZILLABUILD%"
|
||
|
||
REM Get MSVC paths
|
||
call "%MOZILLABUILD%\guess-msvc.bat"
|
||
|
||
REM Use the "new" moztools-static
|
||
set MOZ_TOOLS=%MOZILLABUILD%\moztools
|
||
|
||
rem append moztools to PATH
|
||
SET PATH=%PATH%;%MOZ_TOOLS%\bin
|
||
|
||
if "%VC8DIR%"=="" (
|
||
if "%VC8EXPRESSDIR%"=="" (
|
||
ECHO "Microsoft Visual C++ version 8 was not found. Exiting."
|
||
pause
|
||
EXIT /B 1
|
||
)
|
||
|
||
if "%SDKDIR%"=="" (
|
||
ECHO "Microsoft Platform SDK was not found. Exiting."
|
||
pause
|
||
EXIT /B 1
|
||
)
|
||
|
||
rem Prepend MSVC paths
|
||
call "%VC8EXPRESSDIR%\Bin\vcvars32.bat"
|
||
|
||
rem Don't set SDK paths in this block, because blocks are early-evaluated.
|
||
) else (
|
||
rem Prepend MSVC paths
|
||
call "%VC8DIR%\Bin\vcvars32.bat"
|
||
)
|
||
|
||
if "%VC8DIR%"=="" (
|
||
rem Prepend SDK paths - Don't use the SDK SetEnv.cmd because it pulls in
|
||
rem random VC paths which we don't want.
|
||
rem Add the atlthunk compat library to the end of our LIB
|
||
set PATH=%SDKDIR%\bin;%PATH%
|
||
set LIB=%SDKDIR%\lib;%LIB%;%MOZILLABUILD%\atlthunk_compat
|
||
set INCLUDE=%SDKDIR%\include;%SDKDIR%\include\atl;%INCLUDE%
|
||
)
|
||
|
||
cd "%USERPROFILE%"
|
||
start "MSYS Shell - MSVC8 Environment" "%MOZILLABUILD%\msys\bin\ssh-agent" "%MOZILLABUILD%\msys\bin\rxvt" -backspacekey -sl 2500 -fg %FGCOLOR% -bg %BGCOLOR% -sr -fn "Lucida Console" -tn msys -geometry 80x25 -e /bin/bash --login -i
|