-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
28 lines (22 loc) · 874 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
# This is pretty useless, but it sets the version of the build
version: 0.0.0.build.{build}
# Force configuration
configuration: Debug
# Use Visual Studio 2015 base image
image: Visual Studio 2015
# enforce the location, since we want predictable cmake things
clone_folder: c:\projects\osslugaru\lugaru
# Build for 32-bit and 64-bit
platform:
- Win32
- Win64
# Prep work (CMake VS project generation)
before_build:
- cd c:\projects\osslugaru\lugaru
- set PATH=C:\Program Files (x86)\MSBuild\14.0\BIN;%PATH%
- if %PLATFORM% == Win32 cmake . -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=C:\projects\osslugaru\lugaru\msvc32-build
- if %PLATFORM% == Win64 cmake . -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=C:\projects\osslugaru\lugaru\msvc64-build
# Tell it what to build
build:
project: lugaru.sln
parallel: true