-
Notifications
You must be signed in to change notification settings - Fork 37
/
.appveyor.yml
47 lines (39 loc) · 1.25 KB
/
.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
41
42
43
44
45
46
47
#--------------------------------------------------------------------------------------------------
# Configuration script for use with continuous integration service appveyor.com
#
platform: x64
environment:
BOOST_ROOT: C:/Libraries/boost_1_60_0
BOOST_LIBRARYDIR_WIN32: C:/Libraries/boost_1_60_0/lib32-msvc-14.0
BOOST_LIBRARYDIR_WIN64: C:/Libraries/boost_1_60_0/lib64-msvc-14.0
clone_folder:
C:\projects\visionaray
configuration:
- Debug
- Release
install:
- cd C:\Tools\vcpkg
- git pull
- .\bootstrap-vcpkg.bat
- vcpkg integrate install
- vcpkg install freeglut:x64-windows
- vcpkg install glew:x64-windows
- cd %APPVEYOR_BUILD_FOLDER%
- git submodule update --init --recursive
cache: c:\tools\vcpkg\installed\
build:
parallel: true
build_script:
- cd C:\projects\visionaray
- mkdir build
- cd build
- cmake -G "Visual Studio 14 2015 Win64"
-DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake
-DBOOST_ROOT="%BOOST_ROOT%"
-DBOOST_LIBRARYDIR="%BOOST_LIBRARYDIR_WIN64%"
-DBoost_USE_STATIC_LIBS="ON"
-DVSNRAY_ENABLE_EXAMPLES=ON
-DVSNRAY_ENABLE_COMPILE_FAILURE_TESTS=ON
-DVSNRAY_ENABLE_UNITTESTS=ON
..
- msbuild visionaray.sln