annotate .appveyor.yml @ 525:8c18bdaad04f c++11-mutex

Avoid simple static allocation of mutex, as it could lead to mutex being destroyed before last adapter that needs to use it (since adapters are usually also static)
author Chris Cannam
date Mon, 09 Sep 2019 10:24:13 +0100
parents 62987b6d6a3b
children
rev   line source
Chris@504 1
Chris@504 2 configuration:
Chris@504 3 - Release
Chris@504 4
Chris@504 5 platform:
Chris@506 6 - Win32
Chris@504 7 - x64
Chris@504 8
Chris@507 9 install:
Chris@521 10 - cinst wget --version 1.20
Chris@507 11 - c:\ProgramData\chocolatey\bin\wget.exe http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.28-w32-setup.exe
Chris@507 12 - c:\ProgramData\chocolatey\bin\wget.exe http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.28-w64-setup.exe
Chris@508 13 - ps: .\libsndfile-1.0.28-w32-setup.exe /silent /sp- /norestart
Chris@508 14 - ps: .\libsndfile-1.0.28-w64-setup.exe /silent /sp- /norestart
Chris@507 15
Chris@505 16 build_script:
Chris@505 17 - msbuild build\VampSDK.sln
Chris@505 18 - msbuild build\VampHostSDK.sln
Chris@504 19