[DEV] integrate GLD
This commit is contained in:
31
sample/ioViewer/GLD_ioViewer.json
Normal file
31
sample/ioViewer/GLD_ioViewer.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"type":"BINARY",
|
||||
"sub-type":"TEST",
|
||||
"group-id":"com.atria-soft",
|
||||
"description":"Simpleaudio IO viewer and test ...",
|
||||
"license":"MPL-2",
|
||||
"license-file":"file://../../LICENSE",
|
||||
"maintainer":"file://../../authors.txt",
|
||||
"author":"file://../../authors.txt",
|
||||
"version":"file://../../version.txt",
|
||||
"code-quality":"MEDIUM",
|
||||
|
||||
"source": [
|
||||
"appl/debug.cpp",
|
||||
"appl/main.cpp",
|
||||
"appl/Windows.cpp"
|
||||
],
|
||||
"compilation-version": {
|
||||
"c++": 2017
|
||||
},
|
||||
"path": [
|
||||
"."
|
||||
],
|
||||
"dependency": [
|
||||
"ewol",
|
||||
"audio-river",
|
||||
"audio-river-widget"
|
||||
],
|
||||
"comment": "# set the package properties \n my_module.set_pkg(SECTION, [Development]) \n my_module.set_pkg(PRIORITY, optional) \n my_module.add_pkg(RIGHT, RECORD_AUDIO)"
|
||||
}
|
||||
|
@@ -1,39 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
import realog.debug as debug
|
||||
import lutin.tools as tools
|
||||
import os
|
||||
|
||||
|
||||
def get_type():
|
||||
return "BINARY"
|
||||
|
||||
def get_desc():
|
||||
return "Simpleaudio IO viewer and test ..."
|
||||
|
||||
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_extra_flags()
|
||||
my_module.add_src_file([
|
||||
'appl/debug.cpp',
|
||||
'appl/main.cpp',
|
||||
'appl/Windows.cpp'])
|
||||
my_module.add_depend(['ewol', 'audio-river', 'audio-river-widget'])
|
||||
my_module.add_path(".")
|
||||
# set the package properties :
|
||||
my_module.set_pkg("SECTION", ["Development"])
|
||||
my_module.set_pkg("PRIORITY", "optional")
|
||||
|
||||
my_module.add_pkg("RIGHT", "RECORD_AUDIO")
|
||||
return True
|
||||
|
Reference in New Issue
Block a user