diff options
author | Thomas Edvalson <machin3@gmail.com> | 2014-04-25 18:32:13 +0200 |
---|---|---|
committer | Thomas Edvalson <machin3@gmail.com> | 2014-04-25 18:32:13 +0200 |
commit | e492a253d9ae8cd07cc414873372cad5c198eb4f (patch) | |
tree | 668010054be76c71be4339ed3d2e5126da14d3b9 /.travis.yml | |
parent | Fixed CMake's import of GLFW. (diff) | |
download | yuzu-e492a253d9ae8cd07cc414873372cad5c198eb4f.tar yuzu-e492a253d9ae8cd07cc414873372cad5c198eb4f.tar.gz yuzu-e492a253d9ae8cd07cc414873372cad5c198eb4f.tar.bz2 yuzu-e492a253d9ae8cd07cc414873372cad5c198eb4f.tar.lz yuzu-e492a253d9ae8cd07cc414873372cad5c198eb4f.tar.xz yuzu-e492a253d9ae8cd07cc414873372cad5c198eb4f.tar.zst yuzu-e492a253d9ae8cd07cc414873372cad5c198eb4f.zip |
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..9c6c6e016 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +language: cpp +compiler: + - gcc +before_install: + - sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ trusty main universe" + - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y + - sudo apt-get -qq update + - sudo apt-get -qq install libgtest-dev g++-4.8 xorg-dev libglu1-mesa-dev + - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90 + - git clone https://github.com/glfw/glfw.git + - "cd glfw && mkdir build && cd build && cmake .. && make && sudo make install ; cd -" + - "cd /usr/src/gtest && sudo cmake . && sudo cmake --build . && sudo mv libg* /usr/local/lib/ ; cd -" +script: + - mkdir build && cd build + - cmake .. + - make -j4
\ No newline at end of file |