mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-03 09:29:30 +02:00
22 lines
746 B
YAML
22 lines
746 B
YAML
dist: xenial
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -y cmake wget libwxgtk3.0-dev libgtk2.0-dev gettext autopoint libasound2-dev alsa-utils alsa-oss
|
|
- git show -s --format="#define REV_LONG \"%H\"%n#define REV_TIME \"%cd\"%n" | tee ./src/RevisionIdent.h
|
|
- FLAGS="-std=gnu++14"
|
|
- export CFLAGS="$CFLAGS $FLAGS"
|
|
- export CXXFLAGS="$CXXFLAGS $FLAGS"
|
|
- g++ --version
|
|
- wget https://github.com/Kitware/CMake/releases/download/v3.17.2/cmake-3.17.2-Linux-x86_64.sh
|
|
- sh cmake-3.17.2-Linux-x86_64.sh --skip-license
|
|
language:
|
|
- cpp
|
|
script:
|
|
- mkdir build
|
|
- cd build
|
|
- time ../bin/cmake .. && time make -j2
|