Browse Source

Merge pull request #34236 from madmiraal/enable-bullet-debug

Enable Bullet DEBUG on debug builds.
Rémi Verschelde 5 years ago
parent
commit
c59be89273
1 changed files with 2 additions and 2 deletions
  1. 2 2
      modules/bullet/SCsub

+ 2 - 2
modules/bullet/SCsub

@@ -201,8 +201,8 @@ if env["builtin_bullet"]:
         env_bullet.Append(CPPFLAGS=["-isystem", Dir(thirdparty_dir).path])
     else:
         env_bullet.Prepend(CPPPATH=[thirdparty_dir])
-    # if env['target'] == "debug" or env['target'] == "release_debug":
-    #     env_bullet.Append(CPPDEFINES=['BT_DEBUG'])
+    if env["target"] == "debug" or env["target"] == "release_debug":
+        env_bullet.Append(CPPDEFINES=["DEBUG"])
 
     env_bullet.Append(CPPDEFINES=["BT_USE_OLD_DAMPING_METHOD"])