30 lines
423 B
Python
30 lines
423 B
Python
#!/usr/bin/python
|
|
import lutinModule as module
|
|
import lutinTools as tools
|
|
import lutinDebug as debug
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|