2015-04-02 21:09:24 +02:00
|
|
|
#!/usr/bin/python
|
2015-05-08 22:33:30 +02:00
|
|
|
import lutin.module as module
|
|
|
|
import lutin.tools as tools
|
|
|
|
import lutin.debug as debug
|
2015-04-02 21:09:24 +02:00
|
|
|
|
|
|
|
def get_desc():
|
2015-06-15 22:19:36 +02:00
|
|
|
return "test for River ALGO"
|
2015-04-02 21:09:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
def create(target):
|
2015-06-15 22:19:36 +02:00
|
|
|
myModule = module.Module(__file__, 'audio-algo-river-test', 'BINARY')
|
2015-04-02 21:09:24 +02:00
|
|
|
myModule.add_src_file([
|
|
|
|
'test/main.cpp',
|
|
|
|
'test/debug.cpp'
|
|
|
|
])
|
2015-06-15 18:59:51 +02:00
|
|
|
myModule.add_module_depend(['audio-algo-river'])
|
2015-04-02 21:09:24 +02:00
|
|
|
return myModule
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|