Skip to content

Commit e72352c

Browse files
committed
Updated AppVeyor config to set up the build environment correctly.
1 parent f9946e7 commit e72352c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.appveyor.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ install:
1717
Invoke-WebRequest "https://web.archive.org/web/20200502121517/https://www.steinberg.net/sdk_downloads/vstsdk366_27_06_2016_build_61.zip" -OutFile "vstsdk.zip"
1818
Expand-Archive "vstsdk.zip" "C:\tmp"
1919
}
20+
if (-Not (Test-Path "C:\tmp\Monad.FLParser.dll")) {
21+
Invoke-WebRequest "https://github.com/LeStahL/FLParser/releases/download/compatibility-20.9/Monad.FLParser.dll" -OutFile "C:\tmp\Monad.FLParser.dll"
22+
}
2023
2124
build_script:
2225
# build native code/tests
2326
- mkdir build
2427
- cd build
25-
- cmake -DCMAKE_GENERATOR_PLATFORM=%PLATFORM% -DVSTSDK3_DIR="C:/tmp/VST3 SDK" ..
28+
- cmake -DCMAKE_GENERATOR_PLATFORM=%PLATFORM% -DVSTSDK3_DIR="C:/tmp/VST3 SDK" -DMONAD_FL_PARSER_DIR="C:/tmp/" ..
2629
- msbuild /v:minimal /nologo WaveSabre.sln
2730
- msbuild /v:minimal /nologo /property:Configuration="MinSizeRel" WaveSabre.sln
2831
- cd ..

0 commit comments

Comments
 (0)