[DEV] update next lutin version and debug android play audio

This commit is contained in:
2015-09-24 21:44:04 +02:00
parent dbd66a0157
commit 88c8178a72
6 changed files with 41 additions and 41 deletions

View File

@@ -7,25 +7,25 @@ def get_desc():
return "Simpleaudio IO viewer and test ..."
def create(target):
myModule = module.Module(__file__, 'ioViewer', 'PACKAGE')
myModule.add_extra_compile_flags()
myModule.add_src_file([
my_module = module.Module(__file__, 'ioViewer', 'PACKAGE')
my_module.add_extra_compile_flags()
my_module.add_src_file([
'appl/debug.cpp',
'appl/main.cpp',
'appl/Windows.cpp'])
myModule.add_module_depend(['ewol', 'audio-river', 'audio-river-widget'])
myModule.add_path(tools.get_current_path(__file__))
my_module.add_module_depend(['ewol', 'audio-river', 'audio-river-widget'])
my_module.add_path(tools.get_current_path(__file__))
# set the package properties :
myModule.pkg_set("VERSION", "1.0.0")
myModule.pkg_set("VERSION_CODE", "1")
myModule.pkg_set("COMPAGNY_TYPE", "org")
myModule.pkg_set("COMPAGNY_NAME", "Edouard DUPIN")
myModule.pkg_set("MAINTAINER", ["Mr DUPIN Edouard <yui.heero@gmail.com>"])
myModule.pkg_set("SECTION", ["Development"])
myModule.pkg_set("PRIORITY", "optional")
myModule.pkg_set("DESCRIPTION", "Simple wiewer")
myModule.pkg_set("NAME", "ioViewer")
my_module.pkg_set("VERSION", "1.0.0")
my_module.pkg_set("VERSION_CODE", "1")
my_module.pkg_set("COMPAGNY_TYPE", "org")
my_module.pkg_set("COMPAGNY_NAME", "Edouard DUPIN")
my_module.pkg_set("MAINTAINER", ["Mr DUPIN Edouard <yui.heero@gmail.com>"])
my_module.pkg_set("SECTION", ["Development"])
my_module.pkg_set("PRIORITY", "optional")
my_module.pkg_set("DESCRIPTION", "Simple wiewer")
my_module.pkg_set("NAME", "ioViewer")
myModule.pkg_add("RIGHT", "RECORD_AUDIO")
return myModule
my_module.pkg_add("RIGHT", "RECORD_AUDIO")
return my_module