-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
82 lines (67 loc) · 1.68 KB
/
.travis.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
language: cpp
addons:
apt_packages:
- cmake
- libxrandr-dev
- libudev-dev
- libopenal-dev
- libflac-dev
- libvorbis-dev
- g++-4.9
- clang-3.6
- libgl1-mesa-dev
before_script:
- mkdir build && cd build
- cmake .. $CMAKE_FLAGS -DCMAKE_INSTALL_PREFIX=../install -DSFML_BUILD_EXAMPLES=TRUE
script:
- cmake --build . --target install
matrix:
include:
- name: "Linux gcc Dynamic"
os: linux
dist: xenial
compiler: gcc
- name: "Linux gcc Static"
os: linux
dist: xenial
compiler: gcc
env:
- CMAKE_FLAGS="-DBUILD_SHARED_LIBS=FALSE"
- name: "Linux clang Dynamic"
os: linux
dist: xenial
compiler: clang
- name: "Linux clang Static"
os: linux
dist: xenial
compiler: clang
env:
- CMAKE_FLAGS="-DBUILD_SHARED_LIBS=FALSE"
- name: "macOS Xcode 10 Dynamic"
os: osx
osx_image: xcode10
env:
- CMAKE_FLAGS="-DSFML_DEPENDENCIES_INSTALL_PREFIX=../install"
- name: "macOS Xcode 10 Frameworks"
os: osx
osx_image: xcode10
env:
- CMAKE_FLAGS="-DSFML_DEPENDENCIES_INSTALL_PREFIX=../install -DSFML_BUILD_FRAMEWORKS=TRUE"
- name: "macOS Xcode 10 Static"
os: osx
osx_image: xcode10
env:
- CMAKE_FLAGS="-DSFML_DEPENDENCIES_INSTALL_PREFIX=../install -DBUILD_SHARED_LIBS=FALSE"
- name: "iOS Xcode 10"
os: osx
osx_image: xcode10
env:
- CMAKE_FLAGS="-GXcode -DCMAKE_TOOLCHAIN_FILE=../cmake/toolchains/iOS.toolchain.cmake -DIOS_PLATFORM=SIMULATOR"
- name: "Visual studio 15 2017 Dynamic"
os: windows
- name: "Visual studio 15 2017 Static"
os: windows
env:
- CMAKE_FLAGS="-DBUILD_SHARED_LIBS=FALSE"
notifications:
email: false