[BUILD] update new lutin 0.5.3
This commit is contained in:
parent
a6fba88a18
commit
41e9dfe891
14
lutin_ege.py
14
lutin_ege.py
@ -1,15 +1,13 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
import lutinModule as module
|
import lutin.module as module
|
||||||
import lutinTools as tools
|
import lutin.tools as tools
|
||||||
|
|
||||||
def get_desc():
|
def get_desc():
|
||||||
return "EGE : Ewol Game engine (based on bullet lib)"
|
return "EGE : Ewol Game engine (based on bullet lib)"
|
||||||
|
|
||||||
|
|
||||||
def create(target):
|
def create(target):
|
||||||
# module name is 'edn' and type binary.
|
# module name is 'edn' and type binary.
|
||||||
myModule = module.Module(__file__, 'ege', 'LIBRARY')
|
myModule = module.Module(__file__, 'ege', 'LIBRARY')
|
||||||
|
|
||||||
# add the file to compile:
|
# add the file to compile:
|
||||||
myModule.add_src_file([
|
myModule.add_src_file([
|
||||||
'ege/debug.cpp',
|
'ege/debug.cpp',
|
||||||
@ -49,20 +47,14 @@ def create(target):
|
|||||||
'ege/physicsShape/PhysicsSphere.cpp',
|
'ege/physicsShape/PhysicsSphere.cpp',
|
||||||
'ege/Ray.cpp',
|
'ege/Ray.cpp',
|
||||||
])
|
])
|
||||||
|
|
||||||
myModule.copy_folder('data/ParticuleMesh.*','')
|
myModule.copy_folder('data/ParticuleMesh.*','')
|
||||||
|
|
||||||
# name of the dependency
|
# name of the dependency
|
||||||
myModule.add_module_depend(['ewol', 'bullet'])
|
myModule.add_module_depend(['ewol', 'bullet'])
|
||||||
|
myModule.compile_flags('c++', [
|
||||||
myModule.compile_flags_CC([
|
|
||||||
'-Wno-write-strings',
|
'-Wno-write-strings',
|
||||||
'-Wmissing-field-initializers',
|
'-Wmissing-field-initializers',
|
||||||
'-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
|
||||||
|
|
||||||
|
@ -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 lutinDebug as debug
|
|
||||||
import datetime
|
import datetime
|
||||||
|
|
||||||
|
|
||||||
|
@ -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 lutinDebug as debug
|
|
||||||
import datetime
|
import datetime
|
||||||
|
|
||||||
|
|
||||||
|
@ -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 lutinDebug as debug
|
|
||||||
import datetime
|
import datetime
|
||||||
|
|
||||||
|
|
||||||
|
@ -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 lutinDebug as debug
|
|
||||||
import datetime
|
import datetime
|
||||||
|
|
||||||
|
|
||||||
|
@ -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 lutinDebug as debug
|
|
||||||
import datetime
|
import datetime
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user