2015-04-11 09:38:30 +02:00
|
|
|
#!/usr/bin/python
|
2015-05-08 22:36:02 +02:00
|
|
|
import lutin.module as module
|
|
|
|
import lutin.tools as tools
|
2015-04-11 09:38:30 +02:00
|
|
|
|
|
|
|
def get_desc():
|
|
|
|
return "river_test : Multi-nodal audio interface test"
|
|
|
|
|
|
|
|
|
|
|
|
def create(target):
|
|
|
|
myModule = module.Module(__file__, 'audio_river_test', 'BINARY')
|
|
|
|
myModule.add_src_file([
|
|
|
|
'test/main.cpp',
|
|
|
|
'test/debug.cpp'
|
|
|
|
])
|
|
|
|
myModule.add_module_depend(['audio_river', 'gtest', 'etk'])
|
|
|
|
return myModule
|
|
|
|
|
|
|
|
|