mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-17 23:11:06 +00:00
23 lines
529 B
Plaintext
23 lines
529 B
Plaintext
SubDir TOP Demos OpenGL ;
|
|
|
|
if $(GLUT.AVAILABLE) = "yes"
|
|
{
|
|
|
|
IncludeDir Extras/PhysicsInterface/Common ;
|
|
IncludeDir Extras/PhysicsInterface/CcdPhysics ;
|
|
|
|
Description bulletopenglsupport : "Bullet OpenGL support" ;
|
|
Library bulletopenglsupport :
|
|
[ Wildcard *.h *.cpp ] : noinstall
|
|
;
|
|
|
|
CFlags bulletopenglsupport :
|
|
[ FIncludes $(TOP)/Extras/PhysicsInterface/Common ]
|
|
[ FIncludes $(TOP)/Extras/PhysicsInterface/CcdPhysics ]
|
|
;
|
|
|
|
LibDepends bulletopenglsupport : bulletdynamics ;
|
|
|
|
ExternalLibs bulletopenglsupport : GLUT ;
|
|
}
|