From d2018d9f14c0c9b0ae276ab9f0c880a8eca44ad2 Mon Sep 17 00:00:00 2001 From: Axel Isouard Date: Sun, 16 Oct 2016 17:11:35 +0200 Subject: [PATCH] Appveyor: Write configuration file --- appveyor.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..a10eadb --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,23 @@ +os: Visual Studio 2015 + +platform: + - x64 + +configuration: Release + +clone_folder: c:\projects\libwebrtc + +build: + project: INSTALL.vcxproj + +before_build: + - cd c:\projects\libwebrtc + - git submodule update --init --recursive + - cmake -DCMAKE_INSTALL_PREFIX=c:\projects\libwebrtc . + +after_build: + - 7z a -t7z c:\projects\libwebrtc\libwebrtc-win32-x64.7z -m0=lzma2 -mx=9 -aoa -mfb=64 -md=32m -ms=on -md=1024m include lib + +artifacts: + - path: libwebrtc-win32-x64.7z + name: libwebrtc-win32-x64.7z