forked from xbmc/inputstream.adaptive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
31 lines (25 loc) · 1009 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
version: BuildNr.{build}
image: Visual Studio 2015
shallow_clone: true
clone_folder: c:\projects\inputstream.adaptive
environment:
app_id: inputstream.adaptive
matrix:
- GENERATOR: "Visual Studio 14"
CONFIG: Release
- GENERATOR: "Visual Studio 14 Win64"
CONFIG: Release
- GENERATOR: "Visual Studio 14 Win64"
CONFIG: Release
WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.14393.0"
- GENERATOR: "Visual Studio 14 ARM"
CONFIG: Release
WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.14393.0"
build_script:
- cd ..
- git clone --depth=1 --branch master https://github.com/xbmc/xbmc.git
- cd %app_id%
- mkdir build
- cd build
- cmake -T host=x64 -G "%GENERATOR%" %WINSTORE% -DADDONS_TO_BUILD=%app_id% -DCMAKE_BUILD_TYPE=%CONFIG% -DADDON_SRC_PREFIX=../.. -DCMAKE_INSTALL_PREFIX=../../xbmc/addons -DPACKAGE_ZIP=1 ../../xbmc/cmake/addons
- cmake --build . --config %CONFIG% --target %app_id%