[BUILD] update new lutin 0.5.3

This commit is contained in:
Edouard DUPIN 2015-05-08 22:36:40 +02:00
parent 28a67a895c
commit f88b8e8e92

View File

@ -1,7 +1,6 @@
#!/usr/bin/python #!/usr/bin/python
import lutinModule as module import lutin.module as module
import lutinTools as tools import lutin.tools as tools
import lutinTools
def get_desc(): def get_desc():
return "e-gami library (image generator from multiple image type)" return "e-gami library (image generator from multiple image type)"
@ -26,13 +25,12 @@ def create(target):
# name of the dependency # name of the dependency
myModule.add_module_depend(['etk', 'png', 'esvg', 'edtaa3']) myModule.add_module_depend(['etk', 'png', 'esvg', 'edtaa3'])
myModule.compile_flags_CC([ myModule.compile_flags('c++', [
'-Wno-write-strings', '-Wno-write-strings',
'-Wall']) '-Wall'])
myModule.add_export_path(tools.get_current_path(__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