[DEV] integrate GLD

This commit is contained in:
Edouard DUPIN 2021-12-15 22:42:00 +01:00
parent 732cdc239b
commit 4184759bf7
9 changed files with 103 additions and 170 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 drain audio 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-drain",
"test-debug"
]
}

33
GLD_audio-algo-drain.json Normal file
View File

@ -0,0 +1,33 @@
{
"type":"LIBRARY",
"group-id":"com.atria-soft",
"description":"drain basic algorithm",
"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/drain/debug.cpp",
"audio/algo/drain/BiQuad.cpp",
"audio/algo/drain/BiQuadType.cpp",
"audio/algo/drain/Equalizer.cpp"
],
"header": [
"audio/algo/drain/BiQuad.hpp",
"audio/algo/drain/BiQuadType.hpp",
"audio/algo/drain/Equalizer.hpp"
],
"path":[
"."
],
"compilation-version": {
"c++": 2017
},
"dependency": [
"etk",
"audio"
]
}

View File

@ -1,41 +0,0 @@
#!/usr/bin/python
import realog.debug as debug
import lutin.tools as tools
def get_type():
return "BINARY"
def get_sub_type():
return "TEST"
def get_desc():
return "test drain audio 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-drain', 'test-debug'])
return True

View File

@ -1,54 +0,0 @@
#!/usr/bin/python
import realog.debug as debug
import lutin.tools as tools
def get_type():
return "LIBRARY"
def get_desc():
return "drain basic algorithm"
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/drain/debug.cpp',
'audio/algo/drain/BiQuad.cpp',
'audio/algo/drain/BiQuadType.cpp',
'audio/algo/drain/Equalizer.cpp'
])
my_module.add_header_file([
'audio/algo/drain/BiQuad.hpp',
'audio/algo/drain/BiQuadType.hpp',
'audio/algo/drain/Equalizer.hpp'
])
my_module.add_depend([
'etk',
'audio'
])
my_module.add_path(".")
return True

View File

@ -0,0 +1,21 @@
{
"type":"BINARY",
"sub-type":"TOOL",
"group-id":"com.atria-soft",
"description":"audio algo drain tools",
"license":"MPL-2",
"license-file":"file://../../../LICENSE",
"maintainer":"file://../../../authors.txt",
"author":"file://../../../authors.txt",
"version":"file://../../../version.txt",
"code-quality":"MEDIUM",
"source": [
"beamPattern.cpp"
],
"dependency": [
"m",
"etk",
"test-debug"
]
}

View File

@ -0,0 +1,21 @@
{
"type":"BINARY",
"sub-type":"TOOL",
"group-id":"com.atria-soft",
"description":"audio algo drain tools",
"license":"MPL-2",
"license-file":"file://../../../LICENSE",
"maintainer":"file://../../../authors.txt",
"author":"file://../../../authors.txt",
"version":"file://../../../version.txt",
"code-quality":"MEDIUM",
"source": [
"freqResp.cpp"
],
"dependency": [
"m",
"etk",
"test-debug"
]
}

View File

@ -1,38 +0,0 @@
#!/usr/bin/python
import realog.debug as debug
import lutin.tools as tools
def get_type():
return "BINARY"
def get_sub_type():
return "TOOL"
def get_desc():
return "audio algo drain tools"
def get_licence():
return "MPL-2"
def get_compagny_type():
return "com"
def get_compagny_name():
return "atria-soft"
def get_maintainer():
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
def configure(target, my_module):
my_module.add_src_file([
'beamPattern.cpp'
])
my_module.compile_version("c++", 2011)
my_module.add_depend([
'm',
'etk',
'test-debug'
])
return True

View File

@ -1,37 +0,0 @@
#!/usr/bin/python
import realog.debug as debug
import lutin.tools as tools
def get_type():
return "BINARY"
def get_sub_type():
return "TOOL"
def get_desc():
return "audio algo drain tools"
def get_licence():
return "MPL-2"
def get_compagny_type():
return "com"
def get_compagny_name():
return "atria-soft"
def get_maintainer():
return ["Mr DUPIN Edouard <yui.heero@gmail.com>"]
def configure(target, my_module):
my_module.add_src_file([
'freqResp.cpp'
])
my_module.compile_version("c++", 2011)
my_module.add_depend([
'm',
'etk',
'test-debug'
])
return True