reformat libs fetching, fix appveyor build with luck

This commit is contained in:
zarroboogs 2018-02-02 06:17:13 +02:00 committed by Ani
parent 3e4d12ccf1
commit 00cfe003f7

View file

@ -57,11 +57,11 @@ build:
verbosity: normal verbosity: normal
before_build: before_build:
- cmd: | # fetch precompiled build dependencies - ps: | # fetch precompiled build dependencies
if not exist llvmlibs.7z appveyor DownloadFile %LLVMLIBS% -FileName llvmlibs.7z if (!(test-path llvmlibs.7z)) { irm $env:LLVMLIBS -outfile llvmlibs.7z }
7z x llvmlibs.7z -aos -o"." > nul if (!(test-path vulkan.7z)) { irm $env:VULKAN -outfile vulkan.7z }
if not exist vulkan.7z appveyor DownloadFile %VULKAN% -FileName vulkan.7z 7z x llvmlibs.7z -aos -o"." | out-null
7z x vulkan.7z -aos -o".\lib\%CONFIGURATION%-%PLATFORM%" > nul 7z x vulkan.7z -aos -o".\lib\$env:CONFIGURATION-$env:PLATFORM" | out-null
after_build: after_build:
- ps: | # remove unnecessary files - ps: | # remove unnecessary files