[DEV] integrate GLD
This commit is contained in:
20
tools/GLD_orchestra-in.json
Normal file
20
tools/GLD_orchestra-in.json
Normal 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"
|
||||
]
|
||||
}
|
20
tools/GLD_orchestra-list.json
Normal file
20
tools/GLD_orchestra-list.json
Normal 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"
|
||||
]
|
||||
}
|
20
tools/GLD_orchestra-out.json
Normal file
20
tools/GLD_orchestra-out.json
Normal 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"
|
||||
]
|
||||
}
|
@@ -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
|
||||
|
||||
|
@@ -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
|
||||
|
||||
|
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user