audio-algo-speex/lutin_audio-algo-speex-test.py

26 lines
360 B
Python
Raw Normal View History

#!/usr/bin/python
2015-05-08 22:33:49 +02:00
import lutin.module as module
import lutin.tools as tools
def get_desc():
2015-06-15 19:17:19 +02:00
return "test for speex ALGO"
def create(target):
2015-06-15 19:17:19 +02:00
myModule = module.Module(__file__, 'audio-algo-speex-test', 'BINARY')
myModule.add_src_file([
'test/main.cpp',
'test/debug.cpp'
])
2015-06-15 19:17:19 +02:00
myModule.add_module_depend(['audio-algo-speex'])
return myModule