| @rem Copyright 2011 Google Inc.
|
| @rem Use of this source code is governed by a BSD-style license that can be
|
| @rem found in the LICENSE file.
|
| @rem Launches make.py on Windows, after setting Visual Studio environment variables.
|
| @rem See http://code.google.com/p/skia/wiki/GettingStartedOnWindows
|
| @if "%DevEnvDir%"=="" goto setup_env_vars
|
| @rem Run make.py and propagate its return value.
|
| @rem Visual Studio environment variables aren't set yet, so run vcvars32.bat
|
| @if "%VS100COMNTOOLS%"=="" goto error_no_VS100COMNTOOLS
|
| call "%VS100COMNTOOLS%..\..\VC\bin\vcvars32.bat"
|
| @if %ERRORLEVEL% neq 0 exit /B %ERRORLEVEL%
|
| @echo ERROR: VS100COMNTOOLS environment variable not set.
|
| @echo Are you sure Visual Studio 2010 is installed?
|