[DEV] update next lutin version
This commit is contained in:
parent
1f3a5dd480
commit
0e208e9b27
@ -8,13 +8,13 @@ def get_desc():
|
|||||||
|
|
||||||
|
|
||||||
def create(target):
|
def create(target):
|
||||||
myModule = module.Module(__file__, 'audio-algo-river-test', 'BINARY')
|
my_module = module.Module(__file__, 'audio-algo-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-algo-river'])
|
my_module.add_module_depend(['audio-algo-river'])
|
||||||
return myModule
|
return my_module
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -8,8 +8,8 @@ def get_desc():
|
|||||||
|
|
||||||
|
|
||||||
def create(target):
|
def create(target):
|
||||||
myModule = module.Module(__file__, 'audio-algo-river', 'LIBRARY')
|
my_module = module.Module(__file__, 'audio-algo-river', 'LIBRARY')
|
||||||
myModule.add_src_file([
|
my_module.add_src_file([
|
||||||
'audio/algo/river/debug.cpp',
|
'audio/algo/river/debug.cpp',
|
||||||
'audio/algo/river/convolution.cpp',
|
'audio/algo/river/convolution.cpp',
|
||||||
'audio/algo/river/power.cpp',
|
'audio/algo/river/power.cpp',
|
||||||
@ -18,7 +18,7 @@ def create(target):
|
|||||||
'audio/algo/river/Nlms.cpp',
|
'audio/algo/river/Nlms.cpp',
|
||||||
'audio/algo/river/Suppressor.cpp'
|
'audio/algo/river/Suppressor.cpp'
|
||||||
])
|
])
|
||||||
myModule.add_header_file([
|
my_module.add_header_file([
|
||||||
'audio/algo/river/convolution.h',
|
'audio/algo/river/convolution.h',
|
||||||
'audio/algo/river/power.h',
|
'audio/algo/river/power.h',
|
||||||
'audio/algo/river/updateFilter.h',
|
'audio/algo/river/updateFilter.h',
|
||||||
@ -26,10 +26,10 @@ def create(target):
|
|||||||
'audio/algo/river/Nlms.h',
|
'audio/algo/river/Nlms.h',
|
||||||
'audio/algo/river/Suppressor.h'
|
'audio/algo/river/Suppressor.h'
|
||||||
])
|
])
|
||||||
myModule.add_module_depend(['etk', 'audio'])
|
my_module.add_module_depend(['etk', 'audio'])
|
||||||
myModule.add_path(tools.get_current_path(__file__))
|
my_module.add_path(tools.get_current_path(__file__))
|
||||||
# return module
|
# return module
|
||||||
return myModule
|
return my_module
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user