shithub: libopusenc

Download patch

ref: 03b53ee7bc1cbe9af6ccb4e78d3bc8a1fe9a23f4
parent: 545ff493697c440d570df0e8eb8bd276570537f9
author: Ricardo Constantino <wiiaboo@gmail.com>
date: Wed Jan 3 18:57:02 EST 2018

Add appveyor

Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>

--- /dev/null
+++ b/.appveyor.yml
@@ -1,0 +1,30 @@
+image: Visual Studio 2015
+configuration:
+- Debug
+- DebugDLL
+- Release
+- ReleaseDLL
+
+platform:
+- Win32
+- x64
+
+environment:
+  opus_url: https://ci.appveyor.com/api/projects/$(APPVEYOR_ACCOUNT_NAME)/opus/artifacts/opus.zip
+
+install:
+- cd %APPVEYOR_BUILD_FOLDER%
+- 'curl -LOG --data-urlencode "job=Configuration: %CONFIGURATION%; Platform: %PLATFORM%" %OPUS_URL%'
+- 7z x opus.zip -oopus-artifacts
+- move /Y opus-artifacts ..\opus
+
+build:
+  project: win32\VS2015\opusenc.sln
+  parallel: true
+  verbosity: minimal
+
+after_build:
+- 7z a libopusenc.zip win32\VS2015\%PLATFORM%\%CONFIGURATION%\opusenc.??? include\
+
+artifacts:
+- path: libopusenc.zip