mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 14:59:03 +00:00
31 lines
527 B
YAML
31 lines
527 B
YAML
|
sudo: false
|
||
|
language: cpp
|
||
|
|
||
|
compiler:
|
||
|
- gcc
|
||
|
|
||
|
os:
|
||
|
- linux
|
||
|
env:
|
||
|
- CMAKE_BUILD_OPTIONS="-DWITH_NEL_TESTS:BOOL=off"
|
||
|
|
||
|
addons:
|
||
|
apt:
|
||
|
packages:
|
||
|
- libluabind-dev
|
||
|
- libcpptest-dev
|
||
|
- libogg-dev
|
||
|
- libvorbis-dev
|
||
|
- libopenal-dev
|
||
|
- libgif-dev
|
||
|
- libfreetype6-dev
|
||
|
- libxml2-dev
|
||
|
|
||
|
before_script:
|
||
|
- mkdir build
|
||
|
- cmake --version
|
||
|
|
||
|
script:
|
||
|
- cmake -Hcode -Bbuild $CMAKE_BUILD_OPTIONS
|
||
|
- cmake --build build -- -j 2
|