From 0aa35211c9eed59547ff6788a6fdb85cb281ffb5 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Wed, 15 Dec 2021 22:42:22 +0100 Subject: [PATCH] [DEV] integrate GLD --- .gitignore | 5 +++ GLD_audio-algo-river-test.json | 23 ++++++++++++++ GLD_audio-algo-river.json | 39 +++++++++++++++++++++++ lutin_audio-algo-river-test.py | 44 -------------------------- lutin_audio-algo-river.py | 56 ---------------------------------- 5 files changed, 67 insertions(+), 100 deletions(-) create mode 100644 GLD_audio-algo-river-test.json create mode 100644 GLD_audio-algo-river.json delete mode 100644 lutin_audio-algo-river-test.py delete mode 100644 lutin_audio-algo-river.py diff --git a/.gitignore b/.gitignore index b08d134..a01c9de 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,8 @@ +__pycache__ +.bck +out +target +build ################################### # folders diff --git a/GLD_audio-algo-river-test.json b/GLD_audio-algo-river-test.json new file mode 100644 index 0000000..3799c63 --- /dev/null +++ b/GLD_audio-algo-river-test.json @@ -0,0 +1,23 @@ +{ + "type":"BINARY", + "sub-type":"TEST", + "group-id":"com.atria-soft", + "description":"test for River ALGO", + "license":"MPL-2", + "license-file":"file://LICENSE", + "maintainer":"file://authors.txt", + "author":"file://authors.txt", + "version":"file://version.txt", + "code-quality":"MEDIUM", + + "source": [ + "test/main.cpp" + ], + "compilation-version": { + "c++": 2017 + }, + "dependency": [ + "audio-algo-river", + "test-debug" + ] +} \ No newline at end of file diff --git a/GLD_audio-algo-river.json b/GLD_audio-algo-river.json new file mode 100644 index 0000000..ec00d38 --- /dev/null +++ b/GLD_audio-algo-river.json @@ -0,0 +1,39 @@ +{ + "type":"LIBRARY", + "group-id":"com.atria-soft", + "description":"river algos", + "license":"MPL-2", + "license-file":"file://LICENSE", + "maintainer":"file://authors.txt", + "author":"file://authors.txt", + "version":"file://version.txt", + "code-quality":"MEDIUM", + + "source": [ + "audio/algo/river/debug.cpp", + "audio/algo/river/convolution.cpp", + "audio/algo/river/power.cpp", + "audio/algo/river/updateFilter.cpp", + "audio/algo/river/Lms.cpp", + "audio/algo/river/Nlms.cpp", + "audio/algo/river/Suppressor.cpp" + ], + "header": [ + "audio/algo/river/convolution.hpp", + "audio/algo/river/power.hpp", + "audio/algo/river/updateFilter.hpp", + "audio/algo/river/Lms.hpp", + "audio/algo/river/Nlms.hpp", + "audio/algo/river/Suppressor.hpp" + ], + "path":[ + "." + ], + "compilation-version": { + "c++": 2017 + }, + "dependency": [ + "etk", + "audio" + ] +} \ No newline at end of file diff --git a/lutin_audio-algo-river-test.py b/lutin_audio-algo-river-test.py deleted file mode 100644 index 2cfec37..0000000 --- a/lutin_audio-algo-river-test.py +++ /dev/null @@ -1,44 +0,0 @@ -#!/usr/bin/python -import lutin.tools as tools -import realog.debug as debug - - -def get_type(): - return "BINARY" - -def get_sub_type(): - return "TEST" - -def get_desc(): - return "test for River ALGO" - -def get_licence(): - return "MPL-2" - -def get_compagny_type(): - return "com" - -def get_compagny_name(): - return "atria-soft" - -def get_maintainer(): - return "authors.txt" - -def configure(target, my_module): - my_module.add_src_file([ - 'test/main.cpp' - ]) - my_module.add_depend([ - 'audio-algo-river', - 'test-debug' - ]) - return True - - - - - - - - - diff --git a/lutin_audio-algo-river.py b/lutin_audio-algo-river.py deleted file mode 100644 index 21f181e..0000000 --- a/lutin_audio-algo-river.py +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/python -import lutin.tools as tools -import realog.debug as debug - - -def get_type(): - return "LIBRARY" - -def get_desc(): - return "river algos" - -def get_licence(): - return "MPL-2" - -def get_compagny_type(): - return "com" - -def get_compagny_name(): - return "atria-soft" - -def get_maintainer(): - return "authors.txt" - -def get_version(): - return "version.txt" - -def configure(target, my_module): - my_module.add_src_file([ - 'audio/algo/river/debug.cpp', - 'audio/algo/river/convolution.cpp', - 'audio/algo/river/power.cpp', - 'audio/algo/river/updateFilter.cpp', - 'audio/algo/river/Lms.cpp', - 'audio/algo/river/Nlms.cpp', - 'audio/algo/river/Suppressor.cpp' - ]) - my_module.add_header_file([ - 'audio/algo/river/convolution.hpp', - 'audio/algo/river/power.hpp', - 'audio/algo/river/updateFilter.hpp', - 'audio/algo/river/Lms.hpp', - 'audio/algo/river/Nlms.hpp', - 'audio/algo/river/Suppressor.hpp' - ]) - my_module.add_depend(['etk', 'audio']) - my_module.add_path(".") - return True - - - - - - - - -