[DEV] integrate GLD
This commit is contained in:
parent
dff3740aaa
commit
6dd6c72867
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,3 +1,8 @@
|
||||
__pycache__
|
||||
.bck
|
||||
out
|
||||
target
|
||||
build
|
||||
###################################
|
||||
# backup files
|
||||
###################################
|
||||
|
36
GLD_audio-test.json
Normal file
36
GLD_audio-test.json
Normal file
@ -0,0 +1,36 @@
|
||||
{
|
||||
"type":"BINARY",
|
||||
"sub-type":"TEST",
|
||||
"group-id":"com.atria-soft",
|
||||
"description":"Basic audio types test unit",
|
||||
"license":"MPL-2",
|
||||
"license-file":"file://LICENSE",
|
||||
"maintainer":"file://authors.txt",
|
||||
"author":"file://authors.txt",
|
||||
"version":"file://version.txt",
|
||||
"code-quality":"MEDIUM",
|
||||
|
||||
"source": [
|
||||
"test/base.cpp",
|
||||
"test/main.cpp",
|
||||
"test/test_double.cpp",
|
||||
"test/test_float.cpp",
|
||||
"test/test_int16_16.cpp",
|
||||
"test/test_int16_32.cpp",
|
||||
"test/test_int24_24.cpp",
|
||||
"test/test_int24_32.cpp",
|
||||
"test/test_int32_32.cpp",
|
||||
"test/test_int32_64.cpp",
|
||||
"test/test_int64_64.cpp",
|
||||
"test/test_int8_16.cpp",
|
||||
"test/test_int8_8.cpp"
|
||||
],
|
||||
"compilation-version": {
|
||||
"c++": 2017
|
||||
},
|
||||
"dependency": [
|
||||
"audio",
|
||||
"etest",
|
||||
"test-debug"
|
||||
]
|
||||
}
|
60
GLD_audio.json
Normal file
60
GLD_audio.json
Normal file
@ -0,0 +1,60 @@
|
||||
{
|
||||
"type":"LIBRARY",
|
||||
"group-id":"com.atria-soft",
|
||||
"description":"Basic audio types",
|
||||
"license":"MPL-2",
|
||||
"license-file":"file://LICENSE",
|
||||
"maintainer":"file://authors.txt",
|
||||
"author":"file://authors.txt",
|
||||
"version":"file://version.txt",
|
||||
"code-quality":"MEDIUM",
|
||||
|
||||
"source": [
|
||||
"audio/debug.cpp",
|
||||
"audio/types.cpp",
|
||||
"audio/channel.cpp",
|
||||
"audio/format.cpp",
|
||||
"audio/Time.cpp",
|
||||
"audio/Duration.cpp",
|
||||
"audio/int8_8_t.cpp",
|
||||
"audio/int8_16_t.cpp",
|
||||
"audio/int16_16_t.cpp",
|
||||
"audio/int16_32_t.cpp",
|
||||
"audio/int24_24_t.cpp",
|
||||
"audio/int24_32_t.cpp",
|
||||
"audio/int32_32_t.cpp",
|
||||
"audio/int32_64_t.cpp",
|
||||
"audio/int64_64_t.cpp",
|
||||
"audio/float_t.cpp",
|
||||
"audio/double_t.cpp"
|
||||
],
|
||||
"header": [
|
||||
"audio/types.hpp",
|
||||
"audio/channel.hpp",
|
||||
"audio/format.hpp",
|
||||
"audio/Time.hpp",
|
||||
"audio/Duration.hpp",
|
||||
"audio/int8_8_t.hpp",
|
||||
"audio/int8_16_t.hpp",
|
||||
"audio/int16_16_t.hpp",
|
||||
"audio/int16_32_t.hpp",
|
||||
"audio/int24_24_t.hpp",
|
||||
"audio/int24_32_t.hpp",
|
||||
"audio/int32_32_t.hpp",
|
||||
"audio/int32_64_t.hpp",
|
||||
"audio/int64_64_t.hpp",
|
||||
"audio/float_t.hpp",
|
||||
"audio/double_t.hpp"
|
||||
],
|
||||
"path":[
|
||||
"."
|
||||
],
|
||||
"compilation-version": {
|
||||
"c++": 2017
|
||||
},
|
||||
"dependency": [
|
||||
"etk",
|
||||
"elog",
|
||||
"echrono"
|
||||
]
|
||||
}
|
@ -1,51 +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 "Basic audio types test"
|
||||
|
||||
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/base.cpp',
|
||||
'test/main.cpp',
|
||||
'test/test_double.cpp',
|
||||
'test/test_float.cpp',
|
||||
'test/test_int16_16.cpp',
|
||||
'test/test_int16_32.cpp',
|
||||
'test/test_int24_24.cpp',
|
||||
'test/test_int24_32.cpp',
|
||||
'test/test_int32_32.cpp',
|
||||
'test/test_int32_64.cpp',
|
||||
'test/test_int64_64.cpp',
|
||||
'test/test_int8_16.cpp',
|
||||
'test/test_int8_8.cpp'
|
||||
])
|
||||
my_module.add_depend([
|
||||
'audio',
|
||||
'etest',
|
||||
'test-debug'
|
||||
])
|
||||
return True
|
||||
|
||||
|
||||
|
@ -1,71 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
import realog.debug as debug
|
||||
import lutin.tools as tools
|
||||
|
||||
def get_type():
|
||||
return "LIBRARY"
|
||||
|
||||
def get_desc():
|
||||
return "Basic audio types"
|
||||
|
||||
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/debug.cpp',
|
||||
'audio/types.cpp',
|
||||
'audio/channel.cpp',
|
||||
'audio/format.cpp',
|
||||
'audio/Time.cpp',
|
||||
'audio/Duration.cpp',
|
||||
'audio/int8_8_t.cpp',
|
||||
'audio/int8_16_t.cpp',
|
||||
'audio/int16_16_t.cpp',
|
||||
'audio/int16_32_t.cpp',
|
||||
'audio/int24_24_t.cpp',
|
||||
'audio/int24_32_t.cpp',
|
||||
'audio/int32_32_t.cpp',
|
||||
'audio/int32_64_t.cpp',
|
||||
'audio/int64_64_t.cpp',
|
||||
'audio/float_t.cpp',
|
||||
'audio/double_t.cpp'
|
||||
])
|
||||
my_module.add_header_file([
|
||||
'audio/types.hpp',
|
||||
'audio/channel.hpp',
|
||||
'audio/format.hpp',
|
||||
'audio/Time.hpp',
|
||||
'audio/Duration.hpp',
|
||||
'audio/int8_8_t.hpp',
|
||||
'audio/int8_16_t.hpp',
|
||||
'audio/int16_16_t.hpp',
|
||||
'audio/int16_32_t.hpp',
|
||||
'audio/int24_24_t.hpp',
|
||||
'audio/int24_32_t.hpp',
|
||||
'audio/int32_32_t.hpp',
|
||||
'audio/int32_64_t.hpp',
|
||||
'audio/int64_64_t.hpp',
|
||||
'audio/float_t.hpp',
|
||||
'audio/double_t.hpp'
|
||||
])
|
||||
my_module.add_depend([
|
||||
'etk',
|
||||
'elog',
|
||||
'echrono',
|
||||
])
|
||||
my_module.add_path(".")
|
||||
return True
|
||||
|
Loading…
x
Reference in New Issue
Block a user