2015-03-26 22:28:37 +01:00
|
|
|
#!/usr/bin/python
|
2015-05-08 22:34:13 +02:00
|
|
|
import lutin.module as module
|
|
|
|
import lutin.tools as tools
|
|
|
|
import lutin.debug as debug
|
2015-03-26 22:28:37 +01:00
|
|
|
|
|
|
|
def get_desc():
|
2015-06-15 19:23:18 +02:00
|
|
|
return "single audio flow test"
|
2015-03-26 22:28:37 +01:00
|
|
|
|
|
|
|
|
|
|
|
def create(target):
|
2015-06-15 19:23:18 +02:00
|
|
|
myModule = module.Module(__file__, 'audio-drain-test', 'BINARY')
|
2015-03-26 22:28:37 +01:00
|
|
|
|
|
|
|
myModule.add_src_file([
|
|
|
|
'test/main.cpp',
|
|
|
|
'test/debug.cpp',
|
|
|
|
'test/updateFlow.cpp',
|
|
|
|
'test/resampling.cpp',
|
|
|
|
'test/format.cpp',
|
|
|
|
'test/channelOrder.cpp',
|
|
|
|
'test/equalizer.cpp'
|
|
|
|
])
|
|
|
|
|
2015-06-15 19:23:18 +02:00
|
|
|
myModule.add_module_depend(['audio-drain', 'gtest', 'etk'])
|
2015-03-26 22:28:37 +01:00
|
|
|
|
|
|
|
return myModule
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|