2015-06-30 21:29:08 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
import lutin.module as module
|
|
|
|
import lutin.tools as tools
|
|
|
|
import lutin.debug as debug
|
|
|
|
import os
|
|
|
|
|
|
|
|
def get_desc():
|
|
|
|
return "audio specific widget"
|
|
|
|
|
|
|
|
def get_license():
|
|
|
|
return "APACHE v2.0"
|
|
|
|
|
|
|
|
def create(target):
|
2015-09-24 21:44:04 +02:00
|
|
|
my_module = module.Module(__file__, 'audio-river-widget', 'LIBRARY')
|
|
|
|
my_module.add_src_file([
|
2015-06-30 21:29:08 +02:00
|
|
|
'audio/river/widget/TemporalViewer.cpp',
|
|
|
|
'audio/river/widget/debug.cpp'
|
|
|
|
])
|
2015-09-24 21:44:04 +02:00
|
|
|
my_module.add_module_depend(['ewol', 'audio-river'])
|
|
|
|
my_module.add_export_path(tools.get_current_path(__file__))
|
|
|
|
return my_module
|
2015-06-30 21:29:08 +02:00
|
|
|
|
|
|
|
|