Compare commits

...

3 Commits
main ... dev

4 changed files with 33 additions and 50 deletions

5
.gitignore vendored
View File

@ -1,3 +1,8 @@
__pycache__
.bck
out
target
build
# Compiled Object files
*.slo
*.lo

27
GLD_etranslate.json Normal file
View 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://LICENSE",
"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"
]
}

View File

@ -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

View File

@ -1 +1 @@
1.0.0
1.0.0-dev