22 lines
478 B
Python
22 lines
478 B
Python
|
#!/usr/bin/python
|
||
|
import lutin.module as module
|
||
|
import lutin.tools as tools
|
||
|
|
||
|
def get_desc():
|
||
|
return "test: resample test algorithm"
|
||
|
|
||
|
|
||
|
def create(target):
|
||
|
myModule = module.Module(__file__, 'speex-test-resample', 'BINARY')
|
||
|
# add extra compilation flags :
|
||
|
myModule.add_extra_compile_flags()
|
||
|
# add the file to compile:
|
||
|
myModule.add_src_file([
|
||
|
'speex-dsp/libspeexdsp/testresample.c'
|
||
|
])
|
||
|
# name of the dependency
|
||
|
myModule.add_module_depend('speex-dsp')
|
||
|
return myModule
|
||
|
|
||
|
|