SFML/.travis.yml

52 lines
901 B
YAML
Raw Normal View History

2018-12-04 18:10:21 +08:00
language: cpp
2018-10-10 04:30:20 +08:00
addons:
2018-12-04 18:10:21 +08:00
apt_packages:
2018-10-10 04:30:20 +08:00
- cmake
- libxrandr-dev
- libudev-dev
- libopenal-dev
- libflac-dev
- libvorbis-dev
- g++
- clang
2018-12-04 18:10:21 +08:00
- libgl1-mesa-dev
2018-10-10 04:30:20 +08:00
before_script:
- mkdir build && cd build
2018-12-04 18:10:21 +08:00
- cmake .. $CMAKE_FLAGS -DCMAKE_INSTALL_PREFIX=../install -DSFML_BUILD_EXAMPLES=TRUE
2018-10-10 04:30:20 +08:00
script:
2018-12-04 18:10:21 +08:00
- cmake --build . --target install
2018-10-10 04:30:20 +08:00
matrix:
include:
# Linux - gcc
- os: linux
2018-12-04 18:10:21 +08:00
dist: xenial
2018-10-10 04:30:20 +08:00
compiler: gcc
# Linux - clang
- os: linux
2018-12-04 18:10:21 +08:00
dist: xenial
2018-10-10 04:30:20 +08:00
compiler: clang
# macOS - Xcode 10
- os: osx
osx_image: xcode10
env:
2018-12-04 18:10:21 +08:00
- CMAKE_FLAGS="-DSFML_DEPENDENCIES_INSTALL_PREFIX=../install"
2018-10-10 04:30:20 +08:00
2018-12-04 18:10:21 +08:00
# iOS - Xcode 10
2018-10-10 04:30:20 +08:00
- os: osx
osx_image: xcode10
env:
2018-12-04 18:10:21 +08:00
- CMAKE_FLAGS="-GXcode -DCMAKE_TOOLCHAIN_FILE=../cmake/toolchains/iOS.toolchain.cmake -DIOS_PLATFORM=SIMULATOR"
# Windows - vs2017
- os: windows
2018-10-10 04:30:20 +08:00
notifications:
email: false