esvg/lutin_esvg.py

37 lines
631 B
Python

#!/usr/bin/python
import lutinModule
import lutinTools
def Create(target):
myModule = lutinModule.module(__file__, 'esvg', 'LIBRARY')
myModule.AddModuleDepend(['etk', 'agg', 'exml'])
myModule.AddSrcFile([
'esvg/Base.cpp',
'esvg/Circle.cpp',
'esvg/Debug.cpp',
'esvg/Ellipse.cpp',
'esvg/Group.cpp',
'esvg/Line.cpp',
'esvg/esvg.cpp',
'esvg/Path.cpp',
'esvg/Polygon.cpp',
'esvg/Polyline.cpp',
'esvg/Rectangle.cpp',
'esvg/Renderer.cpp',
'esvg/Stroking.cpp',
'esvg/Text.cpp'])
myModule.AddExportPath(lutinTools.GetCurrentPath(__file__))
# add the currrent module at the
return myModule