From 9bc5d4dec864f30c7a3cf786e70dc7ce5499ed9b Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Fri, 8 May 2015 22:38:09 +0200 Subject: [PATCH] [BUILD] update new lutin 0.5.3 --- lutin_esvg.py | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/lutin_esvg.py b/lutin_esvg.py index e75aa95..1cc1d85 100644 --- a/lutin_esvg.py +++ b/lutin_esvg.py @@ -1,16 +1,13 @@ #!/usr/bin/python -import lutinModule as module -import lutinTools as tools +import lutin.module as module +import lutin.tools as tools def get_desc(): return "e-svg SVG image parser and generator" - def create(target): myModule = module.Module(__file__, 'esvg', 'LIBRARY') - myModule.add_module_depend(['etk', 'agg', 'exml']) - myModule.add_src_file([ 'esvg/Base.cpp', 'esvg/Circle.cpp', @@ -26,15 +23,7 @@ def create(target): 'esvg/Renderer.cpp', 'esvg/Stroking.cpp', 'esvg/Text.cpp']) - myModule.add_export_path(tools.get_current_path(__file__)) - # add the currrent module at the return myModule - - - - - -