Răsfoiți Sursa

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.
DavidWyand-GG 13 ani în urmă
părinte
comite
0074c4f141
1 a modificat fișierele cu 1 adăugiri și 2 ștergeri
  1. 1 2
      Tools/projectGenerator/modules/bullet.inc

+ 1 - 2
Tools/projectGenerator/modules/bullet.inc

@@ -35,8 +35,7 @@ beginModule( 'bullet' );
    {
       addProjectDependency( 'libbullet' );
 
-      if (Generator::$platform != "win32")
-         addSolutionProjectRef( 'libbullet' );
+      addSolutionProjectRef( 'libbullet' );
    }
    
 endModule();