Fix Windows command line build scripts. Fixes #8081

This commit is contained in:
Henrik Rydgard 2015-10-31 13:04:49 +01:00
parent 9fa6f1f89d
commit 9168af726d
2 changed files with 6 additions and 6 deletions

View file

@ -16,11 +16,11 @@ rem // If not, see http://www.gnu.org/licenses/
rem // Official git repository and contact information can be found at
rem // https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
if not defined vs120comntools (
echo "Visual Studio 2013 doesn't appear to be installed properly. Quitting."
if not defined vs140comntools (
echo "Visual Studio 2015 doesn't appear to be installed properly. Quitting."
goto quit
) else (
call "%vs120comntools%\vsvars32.bat" x86_amd64
call "%vs140comntools%\vsvars32.bat" x86_amd64
)
set PPSSPP_ROOT=%CD%\..

View file

@ -16,11 +16,11 @@ rem // If not, see http://www.gnu.org/licenses/
rem // Official git repository and contact information can be found at
rem // https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
if not defined vs120comntools (
echo "Visual Studio 2013 doesn't appear to be installed properly. Quitting."
if not defined vs140comntools (
echo "Visual Studio 2015 doesn't appear to be installed properly. Quitting."
goto quit
) else (
call "%vs120comntools%\vsvars32.bat" x86_amd64
call "%vs140comntools%\vsvars32.bat" x86_amd64
)
set PPSSPP_ROOT=%CD%\..