[DEV] update 'lutin' build system
This commit is contained in:
parent
26375523d5
commit
2c7acec000
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
*.pyc
|
@ -1,38 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
import module
|
||||
import buildTools
|
||||
|
||||
myModule = module.module(__file__, 'parsersvg', 'LIBRARY')
|
||||
|
||||
myModule.AddModuleDepend(['etk', 'agg', 'tinyxml'])
|
||||
|
||||
myModule.AddSrcFile([
|
||||
'parserSVG/Base.cpp',
|
||||
'parserSVG/Circle.cpp',
|
||||
'parserSVG/Debug.cpp',
|
||||
'parserSVG/Ellipse.cpp',
|
||||
'parserSVG/Group.cpp',
|
||||
'parserSVG/Line.cpp',
|
||||
'parserSVG/parserSVG.cpp',
|
||||
'parserSVG/Path.cpp',
|
||||
'parserSVG/Polygon.cpp',
|
||||
'parserSVG/Polyline.cpp',
|
||||
'parserSVG/Rectangle.cpp',
|
||||
'parserSVG/Renderer.cpp',
|
||||
'parserSVG/Stroking.cpp',
|
||||
'parserSVG/Text.cpp'])
|
||||
|
||||
myModule.CompileFlags_CC([
|
||||
'-DPARSER_SVG_VERSION_TAG_NAME="todo-Tag"'])
|
||||
|
||||
myModule.AddExportPath(buildTools.GetCurrentPath(__file__))
|
||||
|
||||
# add the currrent module at the
|
||||
module.AddModule(myModule)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
39
lutin_parsersvg.py
Normal file
39
lutin_parsersvg.py
Normal file
@ -0,0 +1,39 @@
|
||||
#!/usr/bin/python
|
||||
import lutinModule
|
||||
import lutinTools
|
||||
|
||||
def Create(target):
|
||||
myModule = lutinModule.module(__file__, 'parsersvg', 'LIBRARY')
|
||||
|
||||
myModule.AddModuleDepend(['etk', 'agg', 'tinyxml'])
|
||||
|
||||
myModule.AddSrcFile([
|
||||
'parserSVG/Base.cpp',
|
||||
'parserSVG/Circle.cpp',
|
||||
'parserSVG/Debug.cpp',
|
||||
'parserSVG/Ellipse.cpp',
|
||||
'parserSVG/Group.cpp',
|
||||
'parserSVG/Line.cpp',
|
||||
'parserSVG/parserSVG.cpp',
|
||||
'parserSVG/Path.cpp',
|
||||
'parserSVG/Polygon.cpp',
|
||||
'parserSVG/Polyline.cpp',
|
||||
'parserSVG/Rectangle.cpp',
|
||||
'parserSVG/Renderer.cpp',
|
||||
'parserSVG/Stroking.cpp',
|
||||
'parserSVG/Text.cpp'])
|
||||
|
||||
myModule.CompileFlags_CC([
|
||||
'-DPARSER_SVG_VERSION_TAG_NAME="todo-Tag"'])
|
||||
|
||||
myModule.AddExportPath(lutinTools.GetCurrentPath(__file__))
|
||||
|
||||
# add the currrent module at the
|
||||
return myModule
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user