[BUILD] update new lutin 0.5.3

This commit is contained in:
Edouard DUPIN 2015-05-08 22:42:42 +02:00
parent 9d5ced4a5a
commit c4332c7a47
2 changed files with 6 additions and 6 deletions

View File

@ -2,8 +2,8 @@
# --------------------------------------------------------
# -- Bullet librairy
# --------------------------------------------------------
import lutinModule as module
import lutinTools as tools
import lutin.module as module
import lutin.tools as tools
def get_desc():
return "Bullet lib : C++ physic engine"
@ -16,7 +16,7 @@ def create(target):
#remove compilation warning (specific for external libs):
myModule.remove_compile_warning()
myModule.compile_flags_CC([
myModule.compile_flags('c++', [
'-Wno-write-strings',
'-DHAVE_CONFIG_H',
'-O2'])

View File

@ -2,8 +2,8 @@
# --------------------------------------------------------
# -- Linear Math librairy
# --------------------------------------------------------
import lutinModule as module
import lutinTools as tools
import lutin.module as module
import lutin.tools as tools
def get_desc():
return "Bullet lib linar Mathematic interface"
@ -24,7 +24,7 @@ def create(target):
'bullet/src/LinearMath/btVector3.cpp',
'bullet/src/LinearMath/btConvexHullComputer.cpp'])
myModule.compile_flags_CC([
myModule.compile_flags('c', [
'-Wno-write-strings',
'-DHAVE_CONFIG_H',
'-O2'])