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