audio-river/sample/ioViewer/lutin_ioViewer.py

40 lines
806 B
Python
Raw Normal View History

2015-06-30 21:29:08 +02:00
#!/usr/bin/python
import lutin.debug as debug
2015-06-30 21:29:08 +02:00
import lutin.tools as tools
2015-10-14 21:21:03 +02:00
import os
def get_type():
return "BINARY"
2015-06-30 21:29:08 +02:00
def get_desc():
return "Simpleaudio IO viewer and test ..."
2015-10-14 21:21:03 +02:00
def get_licence():
return "MPL-2"
2015-10-14 21:21:03 +02:00
def get_compagny_type():
return "com"
def get_compagny_name():
return "atria-soft"
def get_maintainer():
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
def configure(target, my_module):
2016-09-07 22:05:42 +02:00
my_module.add_extra_flags()
my_module.add_src_file([
2015-06-30 21:29:08 +02:00
'appl/debug.cpp',
'appl/main.cpp',
'appl/Windows.cpp'])
2016-09-07 22:05:42 +02:00
my_module.add_depend(['ewol', 'audio-river', 'audio-river-widget'])
my_module.add_path(".")
2015-06-30 21:29:08 +02:00
# set the package properties :
2016-09-08 21:35:02 +02:00
my_module.set_pkg("SECTION", ["Development"])
my_module.set_pkg("PRIORITY", "optional")
2015-06-30 21:29:08 +02:00
2016-09-08 21:35:02 +02:00
my_module.add_pkg("RIGHT", "RECORD_AUDIO")
return True
2015-06-30 21:29:08 +02:00