diff --git a/.travis.sh b/.travis.sh index 5e6afecd23..eaa0e8eaf0 100644 --- a/.travis.sh +++ b/.travis.sh @@ -171,7 +171,11 @@ travis_script() { sed -i 's/>ProgramDatabase<\/DebugInformationFormat>/><\/DebugInformationFormat>/g' $f done - msbuild.exe Windows\\PPSSPP.sln -m -p:CLToolExe=clcache.exe -p:Configuration=Release -p:Platform=x64 -p:TrackFileAccess=false + if [ "$UWP" == "TRUE" ]; then + msbuild.exe UWP\\PPSSPP_UWP.sln -m -p:CLToolExe=clcache.exe -p:Configuration=Release -p:Platform=x64 -p:TrackFileAccess=false -p:AppxPackageSigningEnabled=false + else + msbuild.exe Windows\\PPSSPP.sln -m -p:CLToolExe=clcache.exe -p:Configuration=Release -p:Platform=x64 -p:TrackFileAccess=false + fi fi } diff --git a/.travis.yml b/.travis.yml index b5fc79998f..9057234e50 100644 --- a/.travis.yml +++ b/.travis.yml @@ -96,6 +96,10 @@ jobs: - os: windows compiler: "msvc2017" env: PPSSPP_BUILD_TYPE=Windows + - os: windows + compiler: "msvc2017" + env: PPSSPP_BUILD_TYPE=Windows + UWP=TRUE before_install: - travis_retry bash .travis.sh travis_before_install