[DEV] integrate GLD

This commit is contained in:
2021-12-15 22:46:23 +01:00
parent 71e6089a40
commit f5be7b35a8
14 changed files with 205 additions and 286 deletions

View File

@@ -0,0 +1,24 @@
{
"type":"BINARY",
"sub-type":"TEST",
"group-id":"com.atria-soft",
"description":"Write some data",
"license":"MPL-2",
"license-file":"file://../../LICENSE",
"maintainer":"file://../../authors.txt",
"author":"file://../../authors.txt",
"version":"file://../../version.txt",
"code-quality":"MEDIUM",
"source": [
"write.cpp"
],
"compilation-version": {
"c++": 2017
},
"dependency": [
"audio-river",
"test-debug",
"etk"
]
}

View File

@@ -1,45 +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 "SAMPLE"
def get_desc():
return "Write some data"
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([
'write.cpp',
])
my_module.add_depend([
'audio-river',
'test-debug',
'etk'
])
return True