dynarmic/.travis.yml
MerryMage 0af1e7723d CMakeLists: Fixup boost
* boost is part of the public interface.
* Consider boost a system library so warnings from boost do not cause a build failure.
* If the parent project defines boost, use that.
2020-04-22 20:26:40 +01:00

22 lines
515 B
YAML

language: cpp
matrix:
include:
- os: linux
sudo: required
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-6
- g++-6
- lib32stdc++6 # For CMake
install: ./.travis/deps-x86_64-linux.sh
script: ./.travis/build-x86_64-linux.sh
- os: osx
sudo: false
osx_image: xcode9.2
install: ./.travis/deps-x86_64-macos.sh
script: ./.travis/build-x86_64-macos.sh