2015-06-15 22:43:44 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
import lutin.module as module
|
|
|
|
import lutin.tools as tools
|
|
|
|
|
|
|
|
def get_desc():
|
|
|
|
return "test: Encode U wide band"
|
|
|
|
|
|
|
|
|
|
|
|
def create(target):
|
2015-09-24 21:44:04 +02:00
|
|
|
my_module = module.Module(__file__, 'speextestencuwb', 'BINARY')
|
2015-06-15 22:43:44 +02:00
|
|
|
# add extra compilation flags :
|
2015-09-24 21:44:04 +02:00
|
|
|
my_module.add_extra_compile_flags()
|
2015-06-15 22:43:44 +02:00
|
|
|
# add the file to compile:
|
2015-09-24 21:44:04 +02:00
|
|
|
my_module.add_src_file([
|
2015-06-15 22:43:44 +02:00
|
|
|
'speex/libspeex/testenc_uwb.c'
|
|
|
|
])
|
|
|
|
|
2015-09-24 21:44:04 +02:00
|
|
|
my_module.compile_version_CC(1989, gnu=True)
|
2015-06-15 22:43:44 +02:00
|
|
|
# name of the dependency
|
2015-09-24 21:44:04 +02:00
|
|
|
my_module.add_module_depend('speex')
|
2015-06-15 22:43:44 +02:00
|
|
|
|
|
|
|
# add the currrent module at the
|
2015-09-24 21:44:04 +02:00
|
|
|
return my_module
|
2015-06-15 22:43:44 +02:00
|
|
|
|
|
|
|
|