[DEV] update new lutin 0.8.0
This commit is contained in:
parent
49785009fa
commit
80017782b3
@ -2,11 +2,30 @@
|
||||
import lutin.module as module
|
||||
import lutin.tools as tools
|
||||
|
||||
def get_desc():
|
||||
return "e-svg SVG image parser and generator"
|
||||
|
||||
def create(target):
|
||||
my_module = module.Module(__file__, 'esvg', 'LIBRARY')
|
||||
def get_type():
|
||||
return "LIBRARY"
|
||||
|
||||
def get_desc():
|
||||
return "SVG image parser and generator"
|
||||
|
||||
def get_licence():
|
||||
return "APACHE-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 get_version():
|
||||
return [0,0,0]
|
||||
|
||||
def create(target, module_name):
|
||||
my_module = module.Module(__file__, module_name, get_type())
|
||||
my_module.add_module_depend(['etk', 'agg', 'exml'])
|
||||
my_module.add_src_file([
|
||||
'esvg/Base.cpp',
|
||||
@ -42,6 +61,5 @@ def create(target):
|
||||
])
|
||||
|
||||
my_module.add_path(tools.get_current_path(__file__))
|
||||
# add the currrent module at the
|
||||
return my_module
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user