-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathappveyor.yml
More file actions
28 lines (22 loc) · 799 Bytes
/
appveyor.yml
File metadata and controls
28 lines (22 loc) · 799 Bytes
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
platform:
- x86
- x64
# specify custom environment variables
environment:
MSVC_DEFAULT_OPTIONS: ON
BOOST_ROOT: C:\Libraries\boost_1_62_0
BOOST_LIBRARYDIR: C:\Libraries\boost_1_62_0\lib32-msvc-14.0
configuration:
- Debug
os:
- Visual Studio 2015
install:
- C:\"Program Files (x86)"\"Microsoft Visual Studio 14.0"\VC\vcvarsall.bat
#- ps: nuget install rapidjson -o "${env:APPVEYOR_BUILD_FOLDER}" -Version 1.0.2
- mkdir build && cd build
- cmake -DBOOST_ROOT="%BOOST_ROOT%" -DBOOST_LIBRARYDIR="%BOOST_LIBRARYDIR%" -DBoost_USE_STATIC_LIBS="ON" ..
build:
project: C:/projects/liquidpp/build/ALL_BUILD.vcxproj
test_script:
#- C:\projects\liquidpp\build\test\Debug\liquidppTest.exe
- ctest --build-config %configuration% --output-on-failure --test-output-size-passed 2048