20 lines
384 B
Python
20 lines
384 B
Python
#!/usr/bin/python
|
|
import lutin.module as module
|
|
import lutin.tools as tools
|
|
import lutin.debug as debug
|
|
|
|
def get_desc():
|
|
return "'list' i/o tool for orchestra"
|
|
|
|
|
|
def create(target):
|
|
myModule = module.Module(__file__, 'orchestra-list', 'BINARY')
|
|
|
|
myModule.add_src_file([
|
|
'orchestra-list.cpp'
|
|
])
|
|
myModule.add_module_depend(['audio-orchestra', 'test-debug'])
|
|
return myModule
|
|
|
|
|