[DEV] integrate GLD
This commit is contained in:
parent
94f4d3994a
commit
0aa35211c9
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,3 +1,8 @@
|
|||||||
|
__pycache__
|
||||||
|
.bck
|
||||||
|
out
|
||||||
|
target
|
||||||
|
build
|
||||||
|
|
||||||
###################################
|
###################################
|
||||||
# folders
|
# folders
|
||||||
|
23
GLD_audio-algo-river-test.json
Normal file
23
GLD_audio-algo-river-test.json
Normal file
@ -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"
|
||||||
|
]
|
||||||
|
}
|
39
GLD_audio-algo-river.json
Normal file
39
GLD_audio-algo-river.json
Normal file
@ -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"
|
||||||
|
]
|
||||||
|
}
|
@ -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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -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
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user