2015-04-06 20:09:04 +02:00
|
|
|
#!/usr/bin/python
|
2015-05-08 22:31:52 +02:00
|
|
|
import lutin.module as module
|
|
|
|
import lutin.tools as tools
|
|
|
|
import lutin.debug as debug
|
2015-04-06 20:09:04 +02:00
|
|
|
|
|
|
|
def get_desc():
|
|
|
|
return "audio_algo_aec_test: test for LMS ALGO"
|
|
|
|
|
|
|
|
|
|
|
|
def create(target):
|
|
|
|
myModule = module.Module(__file__, 'audio_algo_chunkware_test', 'BINARY')
|
|
|
|
myModule.add_src_file([
|
|
|
|
'test/main.cpp',
|
|
|
|
'test/debug.cpp'
|
|
|
|
])
|
|
|
|
myModule.add_module_depend(['audio_algo_chunkware'])
|
|
|
|
return myModule
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|