From 3fe2f44a130c142158e4a3c0559fa7f1e42160ef Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Wed, 7 Sep 2016 22:05:42 +0200 Subject: [PATCH] [DEV] update to future lutin 2.0 --- lutin_audio-algo-speex-test.py | 2 +- lutin_audio-algo-speex.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lutin_audio-algo-speex-test.py b/lutin_audio-algo-speex-test.py index e95a186..2c05796 100644 --- a/lutin_audio-algo-speex-test.py +++ b/lutin_audio-algo-speex-test.py @@ -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 diff --git a/lutin_audio-algo-speex.py b/lutin_audio-algo-speex.py index 39545ef..fae007d 100644 --- a/lutin_audio-algo-speex.py +++ b/lutin_audio-algo-speex.py @@ -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