summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2018-04-26 13:35:27 -0700
committerThiago Marcos P. Santos <tmpsantos@gmail.com>2018-04-26 13:49:12 -0700
commit24900c328f851a1b509acee7cebedee4f786718f (patch)
treebd536937101c9d78a1d472b14512152a030ca4e9
parent0767bf06869c380305c57df1b69d74fac5a6c94a (diff)
downloadqtlocation-mapboxgl-upstream/tmpsantos-win_x86.tar.gz
-rw-r--r--appveyor.yml9
1 files changed, 4 insertions, 5 deletions
diff --git a/appveyor.yml b/appveyor.yml
index d31160261f..dcedaa5dce 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -14,11 +14,10 @@ cache:
install:
- ps: |
- if (!(Test-Path LLVM-5.0.1-win64.exe)) {
- appveyor DownloadFile https://releases.llvm.org/5.0.1/LLVM-5.0.1-win64.exe
+ if (!(Test-Path LLVM-5.0.1-win32.exe)) {
+ appveyor DownloadFile https://releases.llvm.org/5.0.1/LLVM-5.0.1-win32.exe
}
- scripts\check-sha256.ps1 LLVM-5.0.1-win64.exe 981543611D719624ACB29A2CFFD6A479CFF36E8AB5EE8A57D8ECA4F9C4C6956F
- Start-Process -FilePath 'LLVM-5.0.1-win64.exe' -ArgumentList '/S','/D=C:\LLVM-5.0.1' -Wait
+ Start-Process -FilePath 'LLVM-5.0.1-win32.exe' -ArgumentList '/S','/D=C:\LLVM-5.0.1' -Wait
- ps: |
if (!(Test-Path cmake-3.10.1-win64-x64.zip)) {
appveyor DownloadFile https://cmake.org/files/v3.10/cmake-3.10.1-win64-x64.zip
@@ -35,7 +34,7 @@ before_build:
- cd %APPVEYOR_BUILD_FOLDER%\build
build_script:
- - call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
+ - call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
- cmake -G "Ninja" -DMBGL_PLATFORM=qt -DWITH_QT_DECODERS=ON -DWITH_QT_I18N=ON -DWITH_NODEJS=OFF -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=C:\Qt\5.7\msvc2015_64\lib\cmake -DCMAKE_MAKE_PROGRAM="%APPVEYOR_BUILD_FOLDER%\platform\qt\ninja.exe" ..
- cmake --build . -- -j %NUMBER_OF_PROCESSORS%