blob: 440da38b63ace6a672d592829abe178ee9b157d6 (
plain)
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
|
sudo: required
dist: trusty
language: c
compiler:
- clang
- gcc
env:
- V=yes CFLAGS="-W -Wall -Wextra -Wpedantic -Wpointer-arith -Wuninitialized -Wstrict-prototypes -Wmissing-prototypes -Wunused -Wsign-compare -Wshadow -Werror"
script:
- make
# - make check
notifications:
email: false
addons:
apt:
packages:
- libfreeimage-dev
- libsdl2-ttf-dev
# - libcmocka-dev
|