[DEV] update next lutin version and debug android play audio
This commit is contained in:
parent
dbd66a0157
commit
88c8178a72
@ -7,12 +7,12 @@ def get_desc():
|
|||||||
|
|
||||||
|
|
||||||
def create(target):
|
def create(target):
|
||||||
myModule = module.Module(__file__, 'audio-river-test', 'BINARY')
|
my_module = module.Module(__file__, 'audio-river-test', 'BINARY')
|
||||||
myModule.add_src_file([
|
my_module.add_src_file([
|
||||||
'test/main.cpp',
|
'test/main.cpp',
|
||||||
'test/debug.cpp'
|
'test/debug.cpp'
|
||||||
])
|
])
|
||||||
myModule.add_module_depend(['audio-river', 'gtest', 'etk'])
|
my_module.add_module_depend(['audio-river', 'gtest', 'etk'])
|
||||||
return myModule
|
return my_module
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,9 +7,9 @@ def get_desc():
|
|||||||
|
|
||||||
|
|
||||||
def create(target):
|
def create(target):
|
||||||
myModule = module.Module(__file__, 'audio-river', 'LIBRARY')
|
my_module = module.Module(__file__, 'audio-river', 'LIBRARY')
|
||||||
|
|
||||||
myModule.add_src_file([
|
my_module.add_src_file([
|
||||||
'audio/river/debug.cpp',
|
'audio/river/debug.cpp',
|
||||||
'audio/river/river.cpp',
|
'audio/river/river.cpp',
|
||||||
'audio/river/Manager.cpp',
|
'audio/river/Manager.cpp',
|
||||||
@ -22,7 +22,7 @@ def create(target):
|
|||||||
'audio/river/io/NodeMuxer.cpp',
|
'audio/river/io/NodeMuxer.cpp',
|
||||||
'audio/river/io/Manager.cpp'
|
'audio/river/io/Manager.cpp'
|
||||||
])
|
])
|
||||||
myModule.add_header_file([
|
my_module.add_header_file([
|
||||||
'audio/river/river.h',
|
'audio/river/river.h',
|
||||||
'audio/river/Manager.h',
|
'audio/river/Manager.h',
|
||||||
'audio/river/Interface.h',
|
'audio/river/Interface.h',
|
||||||
@ -30,13 +30,13 @@ def create(target):
|
|||||||
'audio/river/io/Node.h',
|
'audio/river/io/Node.h',
|
||||||
'audio/river/io/Manager.h'
|
'audio/river/io/Manager.h'
|
||||||
])
|
])
|
||||||
myModule.add_optionnal_module_depend('audio-orchestra', ["c++", "-DAUDIO_RIVER_BUILD_ORCHESTRA"])
|
my_module.add_optionnal_module_depend('audio-orchestra', ["c++", "-DAUDIO_RIVER_BUILD_ORCHESTRA"])
|
||||||
myModule.add_optionnal_module_depend('portaudio', ["c++", "-DAUDIO_RIVER_BUILD_PORTAUDIO"])
|
my_module.add_optionnal_module_depend('portaudio', ["c++", "-DAUDIO_RIVER_BUILD_PORTAUDIO"])
|
||||||
myModule.add_module_depend(['audio', 'audio-drain', 'ejson'])
|
my_module.add_module_depend(['audio', 'audio-drain', 'ejson'])
|
||||||
myModule.add_path(tools.get_current_path(__file__))
|
my_module.add_path(tools.get_current_path(__file__))
|
||||||
|
|
||||||
# add the currrent module at the
|
# add the currrent module at the
|
||||||
return myModule
|
return my_module
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,25 +7,25 @@ def get_desc():
|
|||||||
return "Simpleaudio IO viewer and test ..."
|
return "Simpleaudio IO viewer and test ..."
|
||||||
|
|
||||||
def create(target):
|
def create(target):
|
||||||
myModule = module.Module(__file__, 'ioViewer', 'PACKAGE')
|
my_module = module.Module(__file__, 'ioViewer', 'PACKAGE')
|
||||||
myModule.add_extra_compile_flags()
|
my_module.add_extra_compile_flags()
|
||||||
myModule.add_src_file([
|
my_module.add_src_file([
|
||||||
'appl/debug.cpp',
|
'appl/debug.cpp',
|
||||||
'appl/main.cpp',
|
'appl/main.cpp',
|
||||||
'appl/Windows.cpp'])
|
'appl/Windows.cpp'])
|
||||||
myModule.add_module_depend(['ewol', 'audio-river', 'audio-river-widget'])
|
my_module.add_module_depend(['ewol', 'audio-river', 'audio-river-widget'])
|
||||||
myModule.add_path(tools.get_current_path(__file__))
|
my_module.add_path(tools.get_current_path(__file__))
|
||||||
# set the package properties :
|
# set the package properties :
|
||||||
myModule.pkg_set("VERSION", "1.0.0")
|
my_module.pkg_set("VERSION", "1.0.0")
|
||||||
myModule.pkg_set("VERSION_CODE", "1")
|
my_module.pkg_set("VERSION_CODE", "1")
|
||||||
myModule.pkg_set("COMPAGNY_TYPE", "org")
|
my_module.pkg_set("COMPAGNY_TYPE", "org")
|
||||||
myModule.pkg_set("COMPAGNY_NAME", "Edouard DUPIN")
|
my_module.pkg_set("COMPAGNY_NAME", "Edouard DUPIN")
|
||||||
myModule.pkg_set("MAINTAINER", ["Mr DUPIN Edouard <yui.heero@gmail.com>"])
|
my_module.pkg_set("MAINTAINER", ["Mr DUPIN Edouard <yui.heero@gmail.com>"])
|
||||||
myModule.pkg_set("SECTION", ["Development"])
|
my_module.pkg_set("SECTION", ["Development"])
|
||||||
myModule.pkg_set("PRIORITY", "optional")
|
my_module.pkg_set("PRIORITY", "optional")
|
||||||
myModule.pkg_set("DESCRIPTION", "Simple wiewer")
|
my_module.pkg_set("DESCRIPTION", "Simple wiewer")
|
||||||
myModule.pkg_set("NAME", "ioViewer")
|
my_module.pkg_set("NAME", "ioViewer")
|
||||||
|
|
||||||
myModule.pkg_add("RIGHT", "RECORD_AUDIO")
|
my_module.pkg_add("RIGHT", "RECORD_AUDIO")
|
||||||
return myModule
|
return my_module
|
||||||
|
|
||||||
|
@ -7,12 +7,12 @@ def get_desc():
|
|||||||
|
|
||||||
|
|
||||||
def create(target):
|
def create(target):
|
||||||
myModule = module.Module(__file__, 'river-sample-read', 'BINARY')
|
my_module = module.Module(__file__, 'river-sample-read', 'BINARY')
|
||||||
myModule.add_src_file([
|
my_module.add_src_file([
|
||||||
'main.cpp',
|
'main.cpp',
|
||||||
])
|
])
|
||||||
myModule.add_module_depend(['audio-river', 'etk'])
|
my_module.add_module_depend(['audio-river', 'etk'])
|
||||||
return myModule
|
return my_module
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -7,12 +7,12 @@ def get_desc():
|
|||||||
|
|
||||||
|
|
||||||
def create(target):
|
def create(target):
|
||||||
myModule = module.Module(__file__, 'river-sample-write', 'BINARY')
|
my_module = module.Module(__file__, 'river-sample-write', 'BINARY')
|
||||||
myModule.add_src_file([
|
my_module.add_src_file([
|
||||||
'main.cpp',
|
'main.cpp',
|
||||||
])
|
])
|
||||||
myModule.add_module_depend(['audio-river', 'etk'])
|
my_module.add_module_depend(['audio-river', 'etk'])
|
||||||
return myModule
|
return my_module
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -11,13 +11,13 @@ def get_license():
|
|||||||
return "APACHE v2.0"
|
return "APACHE v2.0"
|
||||||
|
|
||||||
def create(target):
|
def create(target):
|
||||||
myModule = module.Module(__file__, 'audio-river-widget', 'LIBRARY')
|
my_module = module.Module(__file__, 'audio-river-widget', 'LIBRARY')
|
||||||
myModule.add_src_file([
|
my_module.add_src_file([
|
||||||
'audio/river/widget/TemporalViewer.cpp',
|
'audio/river/widget/TemporalViewer.cpp',
|
||||||
'audio/river/widget/debug.cpp'
|
'audio/river/widget/debug.cpp'
|
||||||
])
|
])
|
||||||
myModule.add_module_depend(['ewol', 'audio-river'])
|
my_module.add_module_depend(['ewol', 'audio-river'])
|
||||||
myModule.add_export_path(tools.get_current_path(__file__))
|
my_module.add_export_path(tools.get_current_path(__file__))
|
||||||
return myModule
|
return my_module
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user