diff --git a/appveyor.yml b/appveyor.yml index f4313ce..b378dc6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -os: Visual Studio 2015 +os: Visual Studio 2019 environment: matrix: @@ -6,19 +6,18 @@ environment: # compiler: "Visual Studio 14 2015" # configuration: Debug - platform: x64 - compiler: "Visual Studio 14 2015 Win64" + compiler: "Visual Studio 16 2019" configuration: Release release_arch: "Windows-amd64-32" install: - git submodule update --init --recursive - - curl -L https://github.com/CICM/pd-faustgen/releases/download/v0.0.0/llvm-windows-x64-mt.zip -o llvm.zip + - curl -L https://github.com/CICM/pd-faustgen/releases/download/v0.0.0/llvm-9.0.0-windows-x64-mt.zip -o llvm.zip - 7z x llvm.zip - - rename llvm-windows-x64-mt llvm - curl http://faust.grame.fr/images/faust-quick-reference.pdf -o ./external/faust-quick-reference.pdf build_script: - mkdir build && cd build - - cmake .. -G "%compiler%" -DUSE_LLVM_CONFIG=off -DLLVM_DIR=./llvm/lib/cmake/llvm + - cmake .. -G "%compiler%" -A x64 -DUSE_LLVM_CONFIG=off -DLLVM_DIR=./llvm/lib/cmake/llvm - msbuild faustgen~.sln /nologo /p:config=%configuration% /p:plateform=%platform% after_build: - cd %APPVEYOR_BUILD_FOLDER%