| @echo off |
| REM ********************************************************** |
| REM Copyright (c) 2009 VMware, Inc. All rights reserved. |
| REM ********************************************************** |
| REM |
| REM Redistribution and use in source and binary forms, with or without |
| REM modification, are permitted provided that the following conditions are met: |
| REM |
| REM * Redistributions of source code must retain the above copyright notice, |
| REM this list of conditions and the following disclaimer. |
| REM |
| REM * Redistributions in binary form must reproduce the above copyright notice, |
| REM this list of conditions and the following disclaimer in the documentation |
| REM and/or other materials provided with the distribution. |
| REM |
| REM * Neither the name of VMware, Inc. nor the names of its contributors may be |
| REM used to endorse or promote products derived from this software without |
| REM specific prior written permission. |
| REM |
| REM THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| REM AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| REM IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| REM ARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE |
| REM FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| REM DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| REM SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| REM CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| REM LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| REM OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
| REM DAMAGE. |
| |
| REM For use with package.bat. |
| REM The env var VSROOT must first be set to the Visual Studio root. |
| |
| if {%VSROOT%}=={} ( |
| echo ERROR: you must set VSROOT |
| exit /b 1 |
| ) |
| if not exist "%VSROOT%\VC\vcvarsall.bat" ( |
| echo ERROR: cannot find %VSROOT%\VC\vcvarsall.bat |
| exit /b 1 |
| ) |
| |
| call %VSROOT%\VC\vcvarsall.bat x64 |