summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 723d6225e66ec2dd5c4be848e97a379ad9e1e306 (plain) (blame)
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
dist: xenial
sudo: required
language: cpp
compiler: gcc
os: linux

addons:
    apt:
        packages:
        - cmake
        - g++
        - libsdl2-dev
        - libsdl2-net-dev

matrix:
    include:
        - name: "Debug build"
        env: BUILD_TYPE=Debug
        - name: "Release build"
        env: BUILD_TYPE=RelWithDebInfo

script:
    - mkdir build
    - cd build
    - cmake .. -DCMAKE_BUILD_TYPE=$BUILD_CONFIGURATION
    - cmake --build .