2015-04-20 22:10:56 +02:00
|
|
|
#!/usr/bin/python
|
2015-05-08 22:33:49 +02:00
|
|
|
import lutin.module as module
|
|
|
|
import lutin.tools as tools
|
2015-04-20 22:10:56 +02:00
|
|
|
|
|
|
|
def get_desc():
|
2015-06-15 19:17:19 +02:00
|
|
|
return "test for speex ALGO"
|
2015-04-20 22:10:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
def create(target):
|
2015-06-15 19:17:19 +02:00
|
|
|
myModule = module.Module(__file__, 'audio-algo-speex-test', 'BINARY')
|
2015-04-20 22:10:56 +02:00
|
|
|
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'])
|
2015-04-20 22:10:56 +02:00
|
|
|
return myModule
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|