Skip to content

Commit

Permalink
Updated AppVeyor config to set up the build environment correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStahL committed Jan 26, 2022
1 parent f9946e7 commit e72352c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,15 @@ install:
Invoke-WebRequest "https://web.archive.org/web/20200502121517/https://www.steinberg.net/sdk_downloads/vstsdk366_27_06_2016_build_61.zip" -OutFile "vstsdk.zip"
Expand-Archive "vstsdk.zip" "C:\tmp"
}
if (-Not (Test-Path "C:\tmp\Monad.FLParser.dll")) {
Invoke-WebRequest "https://github.com/LeStahL/FLParser/releases/download/compatibility-20.9/Monad.FLParser.dll" -OutFile "C:\tmp\Monad.FLParser.dll"
}
build_script:
# build native code/tests
- mkdir build
- cd build
- cmake -DCMAKE_GENERATOR_PLATFORM=%PLATFORM% -DVSTSDK3_DIR="C:/tmp/VST3 SDK" ..
- cmake -DCMAKE_GENERATOR_PLATFORM=%PLATFORM% -DVSTSDK3_DIR="C:/tmp/VST3 SDK" -DMONAD_FL_PARSER_DIR="C:/tmp/" ..
- msbuild /v:minimal /nologo WaveSabre.sln
- msbuild /v:minimal /nologo /property:Configuration="MinSizeRel" WaveSabre.sln
- cd ..
Expand Down

0 comments on commit e72352c

Please sign in to comment.