[DEV] update lutin naming
This commit is contained in:
parent
ac50618272
commit
40494649a6
@ -1,13 +1,17 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
import lutinModule
|
import lutinModule as module
|
||||||
import lutinTools
|
import lutinTools as tools
|
||||||
|
|
||||||
def Create(target):
|
def get_desc():
|
||||||
myModule = lutinModule.module(__file__, 'esvg', 'LIBRARY')
|
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/Base.cpp',
|
||||||
'esvg/Circle.cpp',
|
'esvg/Circle.cpp',
|
||||||
'esvg/debug.cpp',
|
'esvg/debug.cpp',
|
||||||
@ -23,7 +27,7 @@ def Create(target):
|
|||||||
'esvg/Stroking.cpp',
|
'esvg/Stroking.cpp',
|
||||||
'esvg/Text.cpp'])
|
'esvg/Text.cpp'])
|
||||||
|
|
||||||
myModule.AddExportPath(lutinTools.GetCurrentPath(__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
|
||||||
|
@ -2,6 +2,10 @@
|
|||||||
import monkModule as module
|
import monkModule as module
|
||||||
import monkTools as tools
|
import monkTools as tools
|
||||||
|
|
||||||
|
def get_desc():
|
||||||
|
return "e-svg SVG image parser and generator"
|
||||||
|
|
||||||
|
|
||||||
def create():
|
def create():
|
||||||
# module name is 'edn' and type binary.
|
# module name is 'edn' and type binary.
|
||||||
myModule = module.Module(__file__, 'esvg', 'LIBRARY')
|
myModule = module.Module(__file__, 'esvg', 'LIBRARY')
|
||||||
@ -10,6 +14,3 @@ def create():
|
|||||||
myModule.set_path(tools.get_current_path(__file__) + "/esvg/")
|
myModule.set_path(tools.get_current_path(__file__) + "/esvg/")
|
||||||
# add the currrent module at the
|
# add the currrent module at the
|
||||||
return myModule
|
return myModule
|
||||||
|
|
||||||
def get_desc():
|
|
||||||
return ""
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user