diff --git a/lutin_bullet.py b/lutin_bullet.py index 8850c97..e32c7ae 100644 --- a/lutin_bullet.py +++ b/lutin_bullet.py @@ -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']) diff --git a/lutin_linearmath.py b/lutin_linearmath.py index 5717c40..0238934 100644 --- a/lutin_linearmath.py +++ b/lutin_linearmath.py @@ -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'])