[DEV] uptate new lutin declaration model
This commit is contained in:
parent
d826a93800
commit
8590d6ed1a
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
*.pyc
|
||||||
|
__pycache__
|
||||||
|
*.bck
|
||||||
|
out
|
||||||
|
build
|
22
GLD_fluorine-test.json
Normal file
22
GLD_fluorine-test.json
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"type":"BINARY",
|
||||||
|
"sub-type":"TEST",
|
||||||
|
"group-id":"com.atria-soft",
|
||||||
|
"description":"fluorine test application",
|
||||||
|
"license":"MPL-2",
|
||||||
|
"license-file":"file://LICENCE.txt",
|
||||||
|
"maintainer":"file://authors.txt",
|
||||||
|
"author":"file://authors.txt",
|
||||||
|
"version":"file://version.txt",
|
||||||
|
"code-quality":"MEDIUM",
|
||||||
|
|
||||||
|
"source": [
|
||||||
|
"test/test.cpp",
|
||||||
|
"test/testAll.cpp"
|
||||||
|
],
|
||||||
|
"dependency": [
|
||||||
|
"fluorine",
|
||||||
|
"etest",
|
||||||
|
"test-debug"
|
||||||
|
]
|
||||||
|
}
|
27
GLD_fluorine.json
Normal file
27
GLD_fluorine.json
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"type":"LIBRARY",
|
||||||
|
"group-id":"com.atria-soft",
|
||||||
|
"description":"fluorine interface for variant implementation",
|
||||||
|
"license":"MPL-2",
|
||||||
|
"license-file":"file://LICENCE.txt",
|
||||||
|
"maintainer":"file://authors.txt",
|
||||||
|
"author":"file://authors.txt",
|
||||||
|
"version":"file://version.txt",
|
||||||
|
"code-quality":"MEDIUM",
|
||||||
|
|
||||||
|
"source": [
|
||||||
|
"fluorine/debug.cpp",
|
||||||
|
"fluorine/variantType.cpp",
|
||||||
|
"fluorine/Variant.cpp"
|
||||||
|
],
|
||||||
|
"header": [
|
||||||
|
"fluorine/debug.hpp",
|
||||||
|
"fluorine/variantType.hpp",
|
||||||
|
"fluorine/Variant.hpp"
|
||||||
|
],
|
||||||
|
"dependency": [
|
||||||
|
"elog",
|
||||||
|
"etk",
|
||||||
|
"ememory"
|
||||||
|
]
|
||||||
|
}
|
@ -1,44 +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_name():
|
|
||||||
return "fluorine-test"
|
|
||||||
|
|
||||||
def get_desc():
|
|
||||||
return "fluorine test application"
|
|
||||||
|
|
||||||
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([
|
|
||||||
'test/test.cpp',
|
|
||||||
'test/testAll.cpp',
|
|
||||||
])
|
|
||||||
my_module.add_depend([
|
|
||||||
'fluorine',
|
|
||||||
'etest',
|
|
||||||
'test-debug'
|
|
||||||
])
|
|
||||||
return True
|
|
||||||
|
|
@ -1,47 +0,0 @@
|
|||||||
#!/usr/bin/python
|
|
||||||
import realog.debug as debug
|
|
||||||
import lutin.tools as tools
|
|
||||||
|
|
||||||
|
|
||||||
def get_type():
|
|
||||||
return "LIBRARY"
|
|
||||||
|
|
||||||
def get_desc():
|
|
||||||
return "fluorine interface for variant implementation"
|
|
||||||
|
|
||||||
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_depend([
|
|
||||||
'elog',
|
|
||||||
'etk',
|
|
||||||
'ememory'
|
|
||||||
])
|
|
||||||
my_module.add_extra_flags()
|
|
||||||
my_module.add_src_file([
|
|
||||||
'fluorine/debug.cpp',
|
|
||||||
'fluorine/variantType.cpp',
|
|
||||||
'fluorine/Variant.cpp',
|
|
||||||
])
|
|
||||||
my_module.add_header_file([
|
|
||||||
'fluorine/debug.hpp',
|
|
||||||
'fluorine/variantType.hpp',
|
|
||||||
'fluorine/Variant.hpp',
|
|
||||||
])
|
|
||||||
my_module.add_path(".")
|
|
||||||
return True
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user