[BUILD] update new lutin 0.5.3

This commit is contained in:
Edouard DUPIN 2015-05-08 22:38:09 +02:00
parent 6c65d74094
commit 9bc5d4dec8

View File

@ -1,16 +1,13 @@
#!/usr/bin/python #!/usr/bin/python
import lutinModule as module import lutin.module as module
import lutinTools as tools import lutin.tools as tools
def get_desc(): def get_desc():
return "e-svg SVG image parser and generator" return "e-svg SVG image parser and generator"
def create(target): def create(target):
myModule = module.Module(__file__, 'esvg', 'LIBRARY') myModule = module.Module(__file__, 'esvg', 'LIBRARY')
myModule.add_module_depend(['etk', 'agg', 'exml']) myModule.add_module_depend(['etk', 'agg', 'exml'])
myModule.add_src_file([ myModule.add_src_file([
'esvg/Base.cpp', 'esvg/Base.cpp',
'esvg/Circle.cpp', 'esvg/Circle.cpp',
@ -26,15 +23,7 @@ def create(target):
'esvg/Renderer.cpp', 'esvg/Renderer.cpp',
'esvg/Stroking.cpp', 'esvg/Stroking.cpp',
'esvg/Text.cpp']) 'esvg/Text.cpp'])
myModule.add_export_path(tools.get_current_path(__file__)) myModule.add_export_path(tools.get_current_path(__file__))
# add the currrent module at the # add the currrent module at the
return myModule return myModule