mirror of
https://github.com/godotengine/godot
synced 2024-11-02 08:18:44 +00:00
14 lines
474 B
YAML
14 lines
474 B
YAML
language: cpp
|
|
compiler:
|
|
- gcc
|
|
before_install:
|
|
|
|
|
|
before_script:
|
|
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq scons pkg-config libx11-dev libxcursor-dev build-essential libasound2-dev libfreetype6-dev libgl1-mesa-dev libglu-dev
|
|
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
|
|
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
|
|
|
|
script: scons platform=x11
|