From f4c353b67825fc23e4aafe18ab829c0a4ae95925 Mon Sep 17 00:00:00 2001 From: bart Date: Sat, 28 May 2016 01:04:17 +0200 Subject: [PATCH] Fix: Use CC_USE_3D_PHYSICS=1 for Bullet physics instead of CC_USE_PHYSICS --- cmake/Modules/SetCompilerOptions.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Modules/SetCompilerOptions.cmake b/cmake/Modules/SetCompilerOptions.cmake index 83383db124..c8fa020da6 100644 --- a/cmake/Modules/SetCompilerOptions.cmake +++ b/cmake/Modules/SetCompilerOptions.cmake @@ -23,7 +23,7 @@ macro (SetCompilerOptions) # definitions for bullet if (USE_BULLET) add_definitions(-DCC_ENABLE_BULLET_INTEGRATION=1) - add_definitions(-DCC_USE_PHYSICS=1) + add_definitions(-DCC_USE_3D_PHYSICS=1) else() add_definitions(-DCC_ENABLE_BULLET_INTEGRATION=0) add_definitions(-DCC_USE_3D_PHYSICS=0)