mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-02 08:39:46 +02:00
21 lines
731 B
YAML
21 lines
731 B
YAML
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
- gcc-4.8
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -y libwxgtk3.0-dev libgtk2.0-dev
|
|
- git show -s --format="wxT(\"<a href=\\\"http://github.com/audacity/audacity/commit/%H\\\">%h</a> of %cd\")"
|
|
- git show -s --format="wxT(\"<a href=\\\"http://github.com/audacity/audacity/commit/%H\\\">%h</a> of %cd\")" > ./src/RevisionIdent.h
|
|
- export CXX="g++-4.8" CC="gcc-4.8"
|
|
- FLAGS="-Wall -Wextra"
|
|
- export CFLAGS="$CFLAGS $FLAGS"
|
|
- export CXXFLAGS="$CXXFLAGS $FLAGS"
|
|
language:
|
|
- cpp
|
|
script:
|
|
- aclocal --install -I m4 && automake && ./configure && make
|