mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-04 11:26:09 +00:00
0cc87f755f
This adds support for Visual Studio 2017. Also need update cmake to 3.7.2. r? @larsbergstrom Can you please upload [this cmake](https://www.dropbox.com/s/3b2z36jj4gh4qpk/cmake-3.7.2.zip?dl=0) to s3 bucket? Source-Repo: https://github.com/servo/servo Source-Revision: 065f50014f321466c979120967da720e88ae2b29 --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : fc9a546379b96d67ef08979c4bc8258a3854ba59
36 lines
910 B
Batchfile
36 lines
910 B
Batchfile
@echo off
|
|
|
|
IF EXIST "%ProgramFiles(x86)%" (
|
|
set "ProgramFiles32=%ProgramFiles(x86)%"
|
|
) ELSE (
|
|
set "ProgramFiles32=%ProgramFiles%"
|
|
)
|
|
|
|
set VC14VARS=%VS140COMNTOOLS%..\..\VC\vcvarsall.bat
|
|
IF EXIST "%VC14VARS%" (
|
|
set "VS_VCVARS=%VC14VARS%"
|
|
) ELSE (
|
|
for %%e in (Enterprise Professional Community) do (
|
|
IF EXIST "%ProgramFiles32%\Microsoft Visual Studio\2017\%%e\VC\Auxiliary\Build\vcvarsall.bat" (
|
|
set "VS_VCVARS=%ProgramFiles32%\Microsoft Visual Studio\2017\%%e\VC\Auxiliary\Build\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 or 2017 is not installed.
|
|
ECHO Download and install Visual Studio 2015 or 2017 from https://www.visualstudio.com/
|
|
EXIT /B
|
|
)
|
|
|
|
python mach %*
|