audio-algo-speex/lutin_audio_algo_speex_test.py

26 lines
383 B
Python

#!/usr/bin/python
import lutin.module as module
import lutin.tools as tools
def get_desc():
return "audio_algo_speex_test: test for speex ALGO"
def create(target):
myModule = module.Module(__file__, 'audio_algo_speex_test', 'BINARY')
myModule.add_src_file([
'test/main.cpp',
'test/debug.cpp'
])
myModule.add_module_depend(['audio_algo_speex'])
return myModule