mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 06:05:44 +00:00
a2185dc366
Fixes https://github.com/servo/servo/issues/15228 Source-Repo: https://github.com/servo/servo Source-Revision: 7753448cfc760a90eb184d0bfe83730fd2853f4b --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : bbbe73cbc3784657e7294c8db22024f85b80ed34
20 lines
435 B
Batchfile
20 lines
435 B
Batchfile
@echo off
|
|
|
|
SET VS_VCVARS=%VS140COMNTOOLS%..\..\VC\vcvarsall.bat
|
|
IF EXIST "%VS_VCVARS%" (
|
|
IF NOT DEFINED Platform (
|
|
IF EXIST "%ProgramFiles(x86)%" (
|
|
call "%VS_VCVARS%" x64
|
|
) ELSE (
|
|
ECHO 32-bit Windows is currently unsupported.
|
|
EXIT /B
|
|
)
|
|
)
|
|
) ELSE (
|
|
ECHO Visual Studio 2015 is not installed.
|
|
ECHO Download and install Visual Studio 2015 from https://www.visualstudio.com/
|
|
EXIT /B
|
|
)
|
|
|
|
python mach %*
|