Explorar el Código

Use correct compiler to build glbinding on Travis

Thomas Buck hace 9 años
padre
commit
88feae7e1d
Se han modificado 2 ficheros con 7 adiciones y 7 borrados
  1. 0
    7
      cmake/travis_install_linux.sh
  2. 7
    0
      cmake/travis_script_linux.sh

+ 0
- 7
cmake/travis_install_linux.sh Ver fichero

7
 
7
 
8
 if [ "$CXX" = "clang++" ]; then sudo apt-get install --allow-unauthenticated clang-3.5; fi
8
 if [ "$CXX" = "clang++" ]; then sudo apt-get install --allow-unauthenticated clang-3.5; fi
9
 
9
 
10
-git clone https://github.com/hpicgs/glbinding.git
11
-cd glbinding
12
-cmake .
13
-make -j4
14
-sudo make install
15
-cd ..
16
-

+ 7
- 0
cmake/travis_script_linux.sh Ver fichero

5
 
5
 
6
 if [ "$CXX" = "clang++" ]; then export CXX="clang++-3.5"; fi
6
 if [ "$CXX" = "clang++" ]; then export CXX="clang++-3.5"; fi
7
 
7
 
8
+git clone https://github.com/hpicgs/glbinding.git
9
+cd glbinding
10
+cmake .
11
+make -j4
12
+sudo make install
13
+cd ..
14
+
8
 mkdir build && cd build && cmake .. && make -j 4 && make check
15
 mkdir build && cd build && cmake .. && make -j 4 && make check
9
 
16
 

Loading…
Cancelar
Guardar