[DEV] update new worktree

This commit is contained in:
Edouard DUPIN 2015-06-15 19:27:55 +02:00
parent fa618958b8
commit 06290dd92d
5 changed files with 40 additions and 4 deletions

36
.travis.yml Normal file
View File

@ -0,0 +1,36 @@
language: cpp
compiler:
- clang
- gcc
os:
- linux
- osx
before_script:
- cd ..
- git clone https://github.com/atria-soft/etk.git
- git clone https://github.com/musicdsp/audio.git
- pwd
- ls -l
- if [ "$CXX" == "clang++" ]; then BUILDER=clang; else BUILDER=gcc; fi
install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- sudo apt-get install -qq g++-4.9
- sudo apt-get install -qq libstdc++-4.9-dev
- sudo rm /usr/bin/gcc /usr/bin/g++
- sudo ln -s /usr/bin/gcc-4.9 /usr/bin/gcc
- sudo ln -s /usr/bin/g++-4.9 /usr/bin/g++
- sudo pip install lutin
script:
- lutin -C -P -c$BUILDER -mdebug -p audio-orchestra
- ./out/Linux_x86_64/debug/staging/$BUILDER/audio-orchestra/usr/bin/audio-orchestra -l6
notifications:
email:
- yui.heero@gmail.com

View File

@ -8,7 +8,7 @@ def get_desc():
def create(target):
myModule = module.Module(__file__, 'audio_orchestra', 'LIBRARY')
myModule = module.Module(__file__, 'audio-orchestra', 'LIBRARY')
myModule.add_src_file([
'audio/orchestra/debug.cpp',

View File

@ -13,7 +13,7 @@ def create(target):
myModule.add_src_file([
'orchestra-in.cpp'
])
myModule.add_module_depend(['audio_orchestra', 'test-debug'])
myModule.add_module_depend(['audio-orchestra', 'test-debug'])
return myModule

View File

@ -13,7 +13,7 @@ def create(target):
myModule.add_src_file([
'orchestra-list.cpp'
])
myModule.add_module_depend(['audio_orchestra', 'test-debug'])
myModule.add_module_depend(['audio-orchestra', 'test-debug'])
return myModule

View File

@ -13,7 +13,7 @@ def create(target):
myModule.add_src_file([
'orchestra-out.cpp'
])
myModule.add_module_depend(['audio_orchestra', 'test-debug'])
myModule.add_module_depend(['audio-orchestra', 'test-debug'])
return myModule