[DEV] update to future lutin 2.0

This commit is contained in:
Edouard DUPIN 2016-09-07 22:05:42 +02:00
parent a2a4f5f814
commit 3fe2f44a13
2 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ def create(target, module_name):
my_module.add_src_file([
'test/main.cpp'
])
my_module.add_module_depend(['audio-algo-speex', 'test-debug'])
my_module.add_depend(['audio-algo-speex', 'test-debug'])
return my_module

View File

@ -33,8 +33,8 @@ def create(target, module_name):
my_module.add_header_file([
'audio/algo/speex/Resampler.h'
])
my_module.add_module_depend(['etk', 'audio'])
my_module.add_optionnal_module_depend('speex-dsp', ["c++", "-DHAVE_SPEEX_DSP"])
my_module.add_depend(['etk', 'audio'])
my_module.add_optionnal_depend('speex-dsp', ["c++", "-DHAVE_SPEEX_DSP"])
my_module.add_path(tools.get_current_path(__file__))
return my_module