mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
69 lines
2.0 KiB
Batchfile
69 lines
2.0 KiB
Batchfile
@echo off
|
|
rem // Copyright (c) 2012- PPSSPP Project.
|
|
|
|
rem // This program is free software: you can redistribute it and/or modify
|
|
rem // it under the terms of the GNU General Public License as published by
|
|
rem // the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
rem // This program is distributed in the hope that it will be useful,
|
|
rem // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
rem // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
rem // GNU General Public License 2.0 for more details.
|
|
|
|
rem // A copy of the GPL 2.0 should have been included with the program.
|
|
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 vs140comntools (
|
|
echo "Visual Studio 2015 doesn't appear to be installed properly. Quitting."
|
|
goto quit
|
|
) else (
|
|
call "%vs140comntools%\vsvars32.bat" x86_amd64
|
|
)
|
|
|
|
set PPSSPP_ROOT=%CD%\..
|
|
set RELEASE_DIR=%CD%\bin-release
|
|
set RELEASE_X64=PPSSPPWindows64.exe
|
|
set DEBUG_X64=PPSSPPDebug64.exe
|
|
|
|
set RLS_PPSSPP=/m /p:Configuration=Release;Platform=x64
|
|
set DBG_PPSSPP=/m /p:Configuration=Debug;Platform=x64
|
|
|
|
call msbuild PPSSPP.sln /t:Clean %RLS_PPSSPP%
|
|
call msbuild PPSSPP.sln /t:Build %RLS_PPSSPP%
|
|
if not exist %PPSSPP_ROOT%\%RELEASEX64% (
|
|
echo Release build failed.
|
|
goto Quit
|
|
)
|
|
call msbuild PPSSPP.sln /t:Clean %DBG_PPSSPP% /m
|
|
call msbuild PPSSPP.sln /t:Build %DBG_PPSSPP% /m
|
|
if not exist %PPSSPP_ROOT%\%DEBUGX64% (
|
|
echo Debug build failed.
|
|
goto Quit
|
|
)
|
|
|
|
if not exist %RELEASE_DIR%\\. (
|
|
mkdir %RELEASE_DIR%
|
|
) else (
|
|
rmdir /S /Q %RELEASE_DIR%
|
|
mkdir %RELEASE_DIR%
|
|
)
|
|
|
|
cd /d %RELEASE_DIR%
|
|
|
|
xcopy "%PPSSPP_ROOT%\assets" ".\assets\*" /S
|
|
xcopy "%PPSSPP_ROOT%\flash0" ".\flash0\*" /S
|
|
xcopy "%PPSSPP_ROOT%\lang" ".\lang\*" /S
|
|
|
|
copy %PPSSPP_ROOT%\LICENSE.txt /Y
|
|
copy %PPSSPP_ROOT%\README.md /Y
|
|
|
|
copy %PPSSPP_ROOT%\%DEBUG_X64% /Y
|
|
|
|
copy %PPSSPP_ROOT%\%RELEASE_X64% /Y
|
|
|
|
:Quit
|
|
pause
|