mirror of
https://github.com/bulletphysics/bullet3
synced 2025-01-11 01:40:10 +00:00
ea3dfb4ca3
- applied a large patch to remove warnings Thanks to Enrico, see http://www.bulletphysics.com/Bullet/phpBB3/viewtopic.php?f=9&t=1568 - removed SSE includes, added #incude <string.h> for memset in Extras/quickstep, thanks Eternl Knight - disabled 16-byte alignement on btQuadWord class, it causes problems under PS3 Linux. Need to check out why.
24 lines
459 B
Plaintext
24 lines
459 B
Plaintext
SubDir TOP Extras GPUphysics ;
|
|
|
|
if $(GLUT.AVAILABLE) = "yes"
|
|
{
|
|
# All demo apps have a lot in common, so use this rule to simply things
|
|
rule GPUDemo
|
|
{
|
|
Application $(<) : $(>) : noinstall console nomanifest ;
|
|
# LinkWith $(<) : GLUT ;
|
|
CFlags $(<) :
|
|
[ FIncludes $(TOP)/Demos/OpenGL ]
|
|
;
|
|
MsvcIncDirs $(<) :
|
|
"../../Demos/OpenGL"
|
|
;
|
|
|
|
ExternalLibs GPUphysics : GLUT GLew ;
|
|
}
|
|
}
|
|
|
|
|
|
GPUDemo GPUphysics : [ Wildcard *.h *.cpp ] ;
|
|
|