[DEV] update new worktree
This commit is contained in:
parent
fabf64d0f4
commit
6ce8e844dd
14
.travis.yml
14
.travis.yml
@ -10,13 +10,13 @@ os:
|
||||
|
||||
before_script:
|
||||
- cd ..
|
||||
- git clone https://github.com/HeeroYui/gtest.git
|
||||
- git clone https://github.com/HeeroYui/etk.git
|
||||
- git clone https://github.com/generic-library/gtest.git --recurse-submodules
|
||||
- git clone https://github.com/generic-library/speex-dsp.git --recurse-submodules
|
||||
- git clone https://github.com/generic-library/z.git --recurse-submodules
|
||||
- git clone https://github.com/atria-soft/etk.git
|
||||
- git clone https://github.com/atria-soft/ejson.git
|
||||
- git clone https://github.com/musicdsp/audio.git
|
||||
- git clone https://github.com/musicdsp/audio-algo-drain.git
|
||||
- git clone https://github.com/HeeroYui/ejson.git
|
||||
- git clone https://github.com/musicdsp/speexdsp.git
|
||||
- git clone https://github.com/musicdsp/z.git --recurse-submodules
|
||||
- pwd
|
||||
- ls -l
|
||||
- if [ "$CXX" == "clang++" ]; then BUILDER=clang; else BUILDER=gcc; fi
|
||||
@ -32,8 +32,8 @@ install:
|
||||
- sudo pip install lutin
|
||||
|
||||
script:
|
||||
- lutin -C -P -c$BUILDER -mdebug -p audio_drain_test
|
||||
- ./out/Linux_x86_64/debug/staging/$BUILDER/audio_drain_test/usr/bin/audio_drain_test -l6
|
||||
- lutin -C -P -c$BUILDER -mdebug -p audio-drain-test
|
||||
- ./out/Linux_x86_64/debug/staging/$BUILDER/audio-drain-test/usr/bin/audio-drain-test -l6
|
||||
|
||||
notifications:
|
||||
email:
|
||||
|
@ -4,11 +4,11 @@ import lutin.tools as tools
|
||||
import lutin.debug as debug
|
||||
|
||||
def get_desc():
|
||||
return "drain_test : single audio flow test"
|
||||
return "single audio flow test"
|
||||
|
||||
|
||||
def create(target):
|
||||
myModule = module.Module(__file__, 'audio_drain_test', 'BINARY')
|
||||
myModule = module.Module(__file__, 'audio-drain-test', 'BINARY')
|
||||
|
||||
myModule.add_src_file([
|
||||
'test/main.cpp',
|
||||
@ -20,7 +20,7 @@ def create(target):
|
||||
'test/equalizer.cpp'
|
||||
])
|
||||
|
||||
myModule.add_module_depend(['audio_drain', 'gtest', 'etk'])
|
||||
myModule.add_module_depend(['audio-drain', 'gtest', 'etk'])
|
||||
|
||||
return myModule
|
||||
|
@ -4,11 +4,11 @@ import lutin.tools as tools
|
||||
import lutin.debug as debug
|
||||
|
||||
def get_desc():
|
||||
return "audio_drain : Basic audio algo interface single pipe to provess data"
|
||||
return "Basic audio algo interface single pipe to provess data"
|
||||
|
||||
|
||||
def create(target):
|
||||
myModule = module.Module(__file__, 'audio_drain', 'LIBRARY')
|
||||
myModule = module.Module(__file__, 'audio-drain', 'LIBRARY')
|
||||
|
||||
myModule.add_src_file([
|
||||
'audio/drain/debug.cpp',
|
||||
@ -31,7 +31,7 @@ def create(target):
|
||||
|
||||
# TODO: myModule.add_optional_module_depend('speexdsp', "HAVE_SPEEX_DSP_RESAMPLE")
|
||||
myModule.compile_flags('c++', "-DHAVE_SPEEX_DSP_RESAMPLE")
|
||||
myModule.add_module_depend(['etk', 'audio', 'ejson', 'speexdsp', 'audio_algo_drain'])
|
||||
myModule.add_module_depend(['etk', 'audio', 'ejson', 'speex-dsp', 'audio-algo-drain'])
|
||||
myModule.add_export_path(tools.get_current_path(__file__))
|
||||
|
||||
# add the currrent module at the
|
Loading…
Reference in New Issue
Block a user