31 lines
449 B
Python
31 lines
449 B
Python
#!/usr/bin/python
|
|
import lutinModule as module
|
|
import lutinTools as tools
|
|
import lutinDebug as debug
|
|
|
|
def get_desc():
|
|
return "airtio_test : Multi-nodal audio interface test"
|
|
|
|
|
|
def create(target):
|
|
myModule = module.Module(__file__, 'airtio_test', 'BINARY')
|
|
|
|
myModule.add_src_file([
|
|
'test/main.cpp',
|
|
'test/debug.cpp'
|
|
])
|
|
|
|
myModule.add_module_depend(['airtio', 'gtest', 'etk'])
|
|
|
|
# add the currrent module at the
|
|
return myModule
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|