File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 1- # exclude all dot files except .git files
1+ # exclude all dot files except .git, appveyor and travis files
22. *
33! .git *
4+ ! .appveyor *
5+ ! .travis.yml
46
57# exclude binaries and temporary files
68bin /
79bin_plugs /
810intermediate /
911intermediate_plugs /
1012lib /
13+ src /Externals /
1114* .aps
1215* .user
1316* .PVS-Studio. *
Original file line number Diff line number Diff line change 1+ language : cpp
2+ cache : ccache
3+ sudo : required
4+ dist : trusty
5+ compiler :
6+ - g++
7+ install : export CXX="g++-7"
8+ os :
9+ - linux
10+ before_script :
11+ - g++ --version
12+ - sudo apt-get install libegl1-mesa-dev libgles2-mesa-dev libpugixml-dev libopenal-dev libtbb-dev libcrypto++-dev
13+ - sudo apt-get install cmake lua5.1-dev libssl-dev libogg-dev libtheora-dev libvorbis-dev libsdl2-dev liblzo2-dev libjpeg-dev libncurses5-dev
14+ - mkdir bin
15+ - cd bin
16+ - cmake ..
17+ script :
18+ - if [ $TRAVIS_OS_NAME == linux ]; then make && file src/xrCore/xrCore.so; fi
19+ addons :
20+ apt :
21+ sources :
22+ - ubuntu-toolchain-r-test
23+ packages :
24+ - g++-7
25+ notifications :
26+ email : false
27+ env :
28+ global :
29+ - LANG="en_US.UTF-8"
You can’t perform that action at this time.
0 commit comments