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