Merge pull request #25500 from daniel-abbott/BT_Debug_disable

Disable BT_DEBUG, works around #25476 and #25431
This commit is contained in:
Rémi Verschelde 2019-02-08 12:02:09 +01:00 committed by GitHub
commit 9dcbf961e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -187,8 +187,8 @@ if env['builtin_bullet']:
thirdparty_sources = [thirdparty_dir + file for file in bullet2_src]
env_bullet.Append(CPPPATH=[thirdparty_dir])
if env['target'] == "debug" or env['target'] == "release_debug":
env_bullet.Append(CCFLAGS=['-DBT_DEBUG'])
# if env['target'] == "debug" or env['target'] == "release_debug":
# env_bullet.Append(CCFLAGS=['-DBT_DEBUG'])
env_thirdparty = env_bullet.Clone()
env_thirdparty.disable_warnings()