From 0074c4f141f8f056a6432229fcda0bb187c508dd Mon Sep 17 00:00:00 2001 From: DavidWyand-GG Date: Fri, 22 Feb 2013 15:35:23 -0500 Subject: [PATCH] Compile Bullet library under Windows For some reason the Bullet physics library's project file was not being included in the solution when the bullet module was added. This change makes sure that when you want to use Bullet, it will correctly be added by the Project Generator. --- Tools/projectGenerator/modules/bullet.inc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Tools/projectGenerator/modules/bullet.inc b/Tools/projectGenerator/modules/bullet.inc index d748e0f5b..b8327f9f4 100644 --- a/Tools/projectGenerator/modules/bullet.inc +++ b/Tools/projectGenerator/modules/bullet.inc @@ -35,8 +35,7 @@ beginModule( 'bullet' ); { addProjectDependency( 'libbullet' ); - if (Generator::$platform != "win32") - addSolutionProjectRef( 'libbullet' ); + addSolutionProjectRef( 'libbullet' ); } endModule();