Compare commits

...

2 Commits
main ... dev

Author SHA1 Message Date
0aa35211c9 [DEV] integrate GLD 2021-12-15 22:42:22 +01:00
94f4d3994a [VERSION] update dev tag version 2021-02-16 21:47:37 +01:00
6 changed files with 68 additions and 101 deletions

5
.gitignore vendored
View File

@ -1,3 +1,8 @@
__pycache__
.bck
out
target
build
###################################
# folders

View 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
View 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"
]
}

View File

@ -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

View File

@ -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

View File

@ -1 +1 @@
1.0.0
1.0.0-dev