Appveyor: Build an deploy Windows Libretro Core

This commit is contained in:
Mahmood - Zer0xFF 2019-06-25 21:00:19 +01:00
parent aab8dcab4b
commit b165572ad5
2 changed files with 5 additions and 1 deletions

View File

@ -30,6 +30,8 @@ build_script:
artifacts:
- path: $(REPO_COMMIT_SHORT)\*.exe
name: Binaries
- path: $(REPO_COMMIT_SHORT)\play_libretro.dll
name: Libretro_Core
deploy:
- provider: S3
access_key_id: AKIAJGVKEDYESR2BIP7Q

View File

@ -5,7 +5,8 @@ mkdir build
cd build
if "%BUILD_PLAY%" == "ON" (
cmake .. -G"%BUILD_TYPE%" -T v141_xp -DUSE_QT=on -DCMAKE_PREFIX_PATH="C:\Qt\5.12\%QT_FLAVOR%"
set BUILD_DIR=%cd%
cmake .. -G"%BUILD_TYPE%" -T v141_xp -DUSE_QT=on -DBUILD_LIBRETRO_CORE=yes -DCMAKE_PREFIX_PATH="C:\Qt\5.12\%QT_FLAVOR%"
if !errorlevel! neq 0 exit /b !errorlevel!
cmake --build . --config %CONFIG_TYPE%
@ -21,6 +22,7 @@ if "%BUILD_PLAY%" == "ON" (
mkdir %REPO_COMMIT_SHORT%
move installer_win32\*.exe %REPO_COMMIT_SHORT%
move build\Source\ui_libretro\Release\play_libretro.dll %REPO_COMMIT_SHORT%
)
if "%BUILD_PSFPLAYER%" == "ON" (