[DEV] update lutin naming

This commit is contained in:
Edouard DUPIN 2013-12-23 22:38:46 +01:00
parent 5f26683625
commit e8d0ddca2b

View File

@ -2,20 +2,26 @@
# -------------------------------------------------------- # --------------------------------------------------------
# -- Bullet librairy # -- Bullet librairy
# -------------------------------------------------------- # --------------------------------------------------------
import lutinModule import lutinModule as module
import lutinTools import lutinTools as tools
def Create(target):
myModule = lutinModule.module(__file__, 'agg', 'LIBRARY') def get_desc():
return "AGG C++ graphic drawer"
def create(target):
myModule = module.Module(__file__, 'agg', 'LIBRARY')
myModule.AddModuleDepend(['etk', 'freetype']) myModule.add_module_depend(['etk', 'freetype'])
myModule.AddPath(lutinTools.GetCurrentPath(__file__)+"/agg/") myModule.add_path(tools.get_current_path(__file__)+"/agg/")
myModule.AddPath(lutinTools.GetCurrentPath(__file__)+"/agg/util/") myModule.add_path(tools.get_current_path(__file__)+"/agg/util/")
myModule.AddExportPath(lutinTools.GetCurrentPath(__file__)) myModule.add_export_path(tools.get_current_path(__file__))
myModule.AddSrcFile([ myModule.add_src_file([
'agg/agg_arc.cpp', 'agg/agg_arc.cpp',
'agg/agg_arrowhead.cpp', 'agg/agg_arrowhead.cpp',
'agg/agg_bezier_arc.cpp', 'agg/agg_bezier_arc.cpp',
@ -44,7 +50,7 @@ def Create(target):
'agg/agg_vpgen_segmentator.cpp']) 'agg/agg_vpgen_segmentator.cpp'])
#ewol abstraction of the graphic librairies : #ewol abstraction of the graphic librairies :
myModule.AddSrcFile([ myModule.add_src_file([
'draw/debug.cpp', 'draw/debug.cpp',
'draw/Color.cpp', 'draw/Color.cpp',
'draw/Image.cpp']) 'draw/Image.cpp'])