File tree 1 file changed +41
-3
lines changed
1 file changed +41
-3
lines changed Original file line number Diff line number Diff line change 1
1
language : cpp
2
- compiler :
3
- - clang
4
- - gcc
2
+
3
+ dist : xenial
4
+
5
+ matrix :
6
+ include :
7
+ - os : osx
8
+ compiler : clang
9
+ env : if CXXFLAGS="-fgnu-inline-asm -fasm-blocks"
10
+ - os : linux
11
+ compiler : gcc
12
+ - os : linux
13
+ compiler : clang
14
+
15
+ addons :
16
+ apt :
17
+ packages :
18
+ - build-essential
19
+ - nasm
20
+ - libogg-dev
21
+ - libxft-dev
22
+ - libx11-dev
23
+ - libxxf86vm-dev
24
+ - libopenal-dev
25
+ - libfreetype6-dev
26
+ - libxcursor-dev
27
+ - libxinerama-dev
28
+ - libxi-dev
29
+ - libxrandr-dev
30
+ - libxss-dev
31
+ - libglu1-mesa-dev
32
+ - libgtk-3-dev
33
+
34
+ script :
35
+ - mkdir -p My\ Projects/TestProject/buildFiles/travis/
36
+ - cd My\ Projects/TestProject/buildFiles/travis/
37
+ - cmake ../../../.. -DTORQUE_APP_NAME=TestProject -DCMAKE_BUILD_TYPE=Debug
38
+ - make 2>/dev/null # Do the actual build, but ignore all the warnings
39
+ - make # build again. This time all output is printed but the warnings that happened earlier do not happen again
40
+ - make install
41
+ - cd ../../game/
42
+ - ls
You can’t perform that action at this time.
0 commit comments