forked from DaemonEngine/Daemon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
40 lines (32 loc) · 909 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
32
33
34
35
36
37
38
39
40
branches:
except:
- debian
environment:
configuration: Debug
matrix:
# see 96d5c1f3ed77b09c64ce7c3c7cbd37c70456b3db
# for NMake template
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
generator: Visual Studio 16 2019
platform: x64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
generator: Visual Studio 15 2017
platform: win32
build:
parallel: true
before_build:
- git submodule update --init --recursive
build_script:
# simple line break: space
# double line break: line break
- cmd: >
cmake --version
set cmake=cmake
if not "x%generator:Visual Studio=%"=="x%generator%"
set cmake=%cmake% -A"%platform%"
%cmake% -G"%generator%"
-DUSE_WERROR=1 -DBE_VERBOSE=1
-DUSE_PRECOMPILED_HEADER=0 -DBUILD_GAME_NACL=0
-DCMAKE_BUILD_TYPE="%configuration%"
-S. -Bbuild
cmake --build build