[DEV] uptate new lutin declaration model
This commit is contained in:
parent
ce0c61cc46
commit
78f156ee4d
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,3 +1,8 @@
|
|||||||
|
__pycache__
|
||||||
|
.bck
|
||||||
|
out
|
||||||
|
target
|
||||||
|
build
|
||||||
# Compiled Object files
|
# Compiled Object files
|
||||||
*.slo
|
*.slo
|
||||||
*.lo
|
*.lo
|
||||||
|
27
GLD_etranslate.json
Normal file
27
GLD_etranslate.json
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"type":"LIBRARY",
|
||||||
|
"group-id":"com.atria-soft",
|
||||||
|
"description":"E-translate: Ewol runtime translate tool",
|
||||||
|
"license":"MPL-2",
|
||||||
|
"license-file":"file://LICENCE.txt",
|
||||||
|
"maintainer":"file://authors.txt",
|
||||||
|
"author":"file://authors.txt",
|
||||||
|
"version":"file://version.txt",
|
||||||
|
"code-quality":"MEDIUM",
|
||||||
|
|
||||||
|
"source": [
|
||||||
|
"etranslate/etranslate.cpp",
|
||||||
|
"etranslate/debug.cpp"
|
||||||
|
],
|
||||||
|
"header": [
|
||||||
|
"etranslate/etranslate.hpp"
|
||||||
|
],
|
||||||
|
"path":[
|
||||||
|
"."
|
||||||
|
],
|
||||||
|
"dependency": [
|
||||||
|
"elog",
|
||||||
|
"etk",
|
||||||
|
"ejson"
|
||||||
|
]
|
||||||
|
}
|
@ -1,49 +0,0 @@
|
|||||||
#!/usr/bin/python
|
|
||||||
import realog.debug as debug
|
|
||||||
import lutin.tools as tools
|
|
||||||
|
|
||||||
|
|
||||||
def get_type():
|
|
||||||
return "LIBRARY"
|
|
||||||
|
|
||||||
def get_desc():
|
|
||||||
return "E-translate: Ewol runtime translate tool"
|
|
||||||
|
|
||||||
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):
|
|
||||||
# add extra compilation flags:
|
|
||||||
my_module.add_extra_flags()
|
|
||||||
# add the file to compile:
|
|
||||||
my_module.add_src_file([
|
|
||||||
'etranslate/etranslate.cpp',
|
|
||||||
'etranslate/debug.cpp',
|
|
||||||
])
|
|
||||||
my_module.add_header_file([
|
|
||||||
'etranslate/etranslate.hpp',
|
|
||||||
])
|
|
||||||
|
|
||||||
# name of the dependency
|
|
||||||
my_module.add_depend([
|
|
||||||
'elog',
|
|
||||||
'etk',
|
|
||||||
'ejson',
|
|
||||||
])
|
|
||||||
|
|
||||||
my_module.add_path(".")
|
|
||||||
|
|
||||||
return True
|
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user