mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-03 17:19:43 +02:00
21 lines
631 B
YAML
21 lines
631 B
YAML
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.9
|
|
- gcc-4.9
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -y libwxgtk3.0-dev libgtk2.0-dev
|
|
- git show -s --format="wxT(\"[[http://github.com/audacity/audacity/commit/%H|%h]] of %cd\")" | tee ./src/RevisionIdent.h
|
|
- export CXX="g++-4.9" CC="gcc-4.9"
|
|
- FLAGS="-w -std=gnu++11"
|
|
- export CFLAGS="$CFLAGS $FLAGS"
|
|
- export CXXFLAGS="$CXXFLAGS $FLAGS"
|
|
- g++-4.9 --version
|
|
language:
|
|
- cpp
|
|
script:
|
|
- aclocal --install -I m4 && automake && ./configure && make
|