[DEV] update to future lutin 2.0

This commit is contained in:
Edouard DUPIN 2016-09-07 22:05:42 +02:00
parent 4ed5d9a905
commit 80f8d2d7d2
4 changed files with 7 additions and 7 deletions

View File

@ -35,7 +35,7 @@ def create(target, module_name):
'test/channelOrder.cpp',
'test/equalizer.cpp'
])
my_module.add_module_depend(['audio-drain', 'gtest', 'etk', 'test-debug'])
my_module.add_depend(['audio-drain', 'gtest', 'etk', 'test-debug'])
return my_module

View File

@ -68,8 +68,8 @@ def create(target, module_name):
])
# TODO: my_module.add_optional_module_depend('speexdsp', "HAVE_SPEEX_DSP_RESAMPLE")
my_module.compile_flags('c++', "-DHAVE_SPEEX_DSP_RESAMPLE")
my_module.add_module_depend(['etk', 'audio', 'ejson', 'speex-dsp', 'audio-algo-drain'])
my_module.add_flag('c++', "-DHAVE_SPEEX_DSP_RESAMPLE")
my_module.add_depend(['etk', 'audio', 'ejson', 'speex-dsp', 'audio-algo-drain'])
my_module.add_path(tools.get_current_path(__file__))
return my_module

View File

@ -32,8 +32,8 @@ def create(target, module_name):
'appl/Windows.cpp',
'appl/widget/DisplayFrequency.cpp',
])
my_module.add_module_depend(['ewol', 'audio-drain', 'audio-river'])
my_module.compile_flags('c++', [
my_module.add_depend(['ewol', 'audio-drain', 'audio-river'])
my_module.add_flag('c++', [
"-DPROJECT_NAME=\"\\\""+my_module.name+"\\\"\""
])
my_module.add_path(tools.get_current_path(__file__))

View File

@ -32,8 +32,8 @@ def create(target, module_name):
'appl/Windows.cpp',
'appl/widget/DisplayFrequency.cpp',
])
my_module.add_module_depend(['ewol', 'audio-drain', 'audio-river'])
my_module.compile_flags('c++', [
my_module.add_depend(['ewol', 'audio-drain', 'audio-river'])
my_module.add_flag('c++', [
"-DPROJECT_NAME=\"\\\""+my_module.name+"\\\"\""
])
my_module.add_path(tools.get_current_path(__file__))