[DEV] update lutin naming

This commit is contained in:
Edouard DUPIN 2013-12-23 22:38:46 +01:00
parent ac50618272
commit 40494649a6
2 changed files with 15 additions and 10 deletions

View File

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

View File

@ -2,6 +2,10 @@
import monkModule as module
import monkTools as tools
def get_desc():
return "e-svg SVG image parser and generator"
def create():
# module name is 'edn' and type binary.
myModule = module.Module(__file__, 'esvg', 'LIBRARY')
@ -10,6 +14,3 @@ def create():
myModule.set_path(tools.get_current_path(__file__) + "/esvg/")
# add the currrent module at the
return myModule
def get_desc():
return ""