[DEV] integrate GLD

This commit is contained in:
2021-12-15 22:43:37 +01:00
parent d1b0a4a664
commit 465c1334bd
10 changed files with 302 additions and 293 deletions

View File

@@ -0,0 +1,20 @@
{
"type": "BINARY",
"sub-type": "TOOL",
"group-id": "com.atria-soft",
"description": "'in' tool for orchestra",
"license": "MPL-2",
"license-file": "file://../LICENSE",
"maintainer": "file://../authors.txt",
"author": "file://../authors.txt",
"version": "file://../version.txt",
"code-quality": "MEDIUM",
"source": [
"orchestra-in.cpp"
],
"dependency": [
"audio-orchestra",
"test-debug"
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "BINARY",
"sub-type": "TOOL",
"group-id": "com.atria-soft",
"description": "'list' i/o tool for orchestra",
"license": "MPL-2",
"license-file": "file://../LICENSE",
"maintainer": "file://../authors.txt",
"author": "file://../authors.txt",
"version": "file://../version.txt",
"code-quality": "MEDIUM",
"source": [
"orchestra-list.cpp"
],
"dependency": [
"audio-orchestra",
"test-debug"
]
}

View File

@@ -0,0 +1,20 @@
{
"type": "BINARY",
"sub-type": "TOOL",
"group-id": "com.atria-soft",
"description": "'out' i/o tool for orchestra",
"license": "MPL-2",
"license-file": "file://../LICENSE",
"maintainer": "file://../authors.txt",
"author": "file://../authors.txt",
"version": "file://../version.txt",
"code-quality": "MEDIUM",
"source": [
"orchestra-out.cpp"
],
"dependency": [
"audio-orchestra",
"test-debug"
]
}

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 "TOOLS"
def get_desc():
return "'in' tool for orchestra"
def get_licence():
return "APACHE-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([
'orchestra-in.cpp'
])
my_module.add_depend([
'audio-orchestra',
'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 "TOOLS"
def get_desc():
return "'list' i/o tool for orchestra"
def get_licence():
return "APACHE-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([
'orchestra-list.cpp'
])
my_module.add_depend([
'audio-orchestra',
'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 "TOOLS"
def get_desc():
return "'out' tool for orchestra"
def get_licence():
return "APACHE-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([
'orchestra-out.cpp'
])
my_module.add_depend([
'audio-orchestra',
'test-debug'
])
return True