forked from HippoBaro/R-Type
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
34 lines (26 loc) · 820 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
# Operating system (build VM template)
os: Visual Studio 2015
# scripts that are called at very beginning, before repo cloning
init:
- git config --global core.autocrlf input
# clone directory
clone_folder: c:\projects\RType
platform: x64
configuration: Release
install:
# by default, all script lines are interpreted as batch
build:
project: R_Type.sln # path to Visual Studio solution or project
# scripts to run before build
before_build:
- echo Running cmake...
- cd c:\projects\RType
- cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_INSTALL_PREFIX=%P%
after_build:
- echo Running CTest Unit Tests...
- cd c:\projects\RType
notifications:
- provider: Slack
auth_token:
secure: xoxp-106362670305-107724972103-107943400887-237f119f5546462d3e1de37caa884e0e
channel: '#repo'