[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:
|
before_script:
|
||||||
- cd ..
|
- cd ..
|
||||||
- git clone https://github.com/HeeroYui/gtest.git
|
- git clone https://github.com/generic-library/gtest.git --recurse-submodules
|
||||||
- git clone https://github.com/HeeroYui/etk.git
|
- 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.git
|
||||||
- git clone https://github.com/musicdsp/audio-algo-drain.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
|
- pwd
|
||||||
- ls -l
|
- ls -l
|
||||||
- if [ "$CXX" == "clang++" ]; then BUILDER=clang; else BUILDER=gcc; fi
|
- if [ "$CXX" == "clang++" ]; then BUILDER=clang; else BUILDER=gcc; fi
|
||||||
@ -32,8 +32,8 @@ install:
|
|||||||
- sudo pip install lutin
|
- sudo pip install lutin
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- lutin -C -P -c$BUILDER -mdebug -p audio_drain_test
|
- 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
|
- ./out/Linux_x86_64/debug/staging/$BUILDER/audio-drain-test/usr/bin/audio-drain-test -l6
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
email:
|
email:
|
||||||
|
@ -4,11 +4,11 @@ import lutin.tools as tools
|
|||||||
import lutin.debug as debug
|
import lutin.debug as debug
|
||||||
|
|
||||||
def get_desc():
|
def get_desc():
|
||||||
return "drain_test : single audio flow test"
|
return "single audio flow test"
|
||||||
|
|
||||||
|
|
||||||
def create(target):
|
def create(target):
|
||||||
myModule = module.Module(__file__, 'audio_drain_test', 'BINARY')
|
myModule = module.Module(__file__, 'audio-drain-test', 'BINARY')
|
||||||
|
|
||||||
myModule.add_src_file([
|
myModule.add_src_file([
|
||||||
'test/main.cpp',
|
'test/main.cpp',
|
||||||
@ -20,7 +20,7 @@ def create(target):
|
|||||||
'test/equalizer.cpp'
|
'test/equalizer.cpp'
|
||||||
])
|
])
|
||||||
|
|
||||||
myModule.add_module_depend(['audio_drain', 'gtest', 'etk'])
|
myModule.add_module_depend(['audio-drain', 'gtest', 'etk'])
|
||||||
|
|
||||||
return myModule
|
return myModule
|
||||||
|
|
@ -4,11 +4,11 @@ import lutin.tools as tools
|
|||||||
import lutin.debug as debug
|
import lutin.debug as debug
|
||||||
|
|
||||||
def get_desc():
|
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):
|
def create(target):
|
||||||
myModule = module.Module(__file__, 'audio_drain', 'LIBRARY')
|
myModule = module.Module(__file__, 'audio-drain', 'LIBRARY')
|
||||||
|
|
||||||
myModule.add_src_file([
|
myModule.add_src_file([
|
||||||
'audio/drain/debug.cpp',
|
'audio/drain/debug.cpp',
|
||||||
@ -31,7 +31,7 @@ def create(target):
|
|||||||
|
|
||||||
# TODO: myModule.add_optional_module_depend('speexdsp', "HAVE_SPEEX_DSP_RESAMPLE")
|
# TODO: myModule.add_optional_module_depend('speexdsp', "HAVE_SPEEX_DSP_RESAMPLE")
|
||||||
myModule.compile_flags('c++', "-DHAVE_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__))
|
myModule.add_export_path(tools.get_current_path(__file__))
|
||||||
|
|
||||||
# add the currrent module at the
|
# add the currrent module at the
|
Loading…
Reference in New Issue
Block a user