From c779f059893939dce43dca48170eef1d2e90e7fe Mon Sep 17 00:00:00 2001 From: ejcoumans Date: Wed, 20 Sep 2006 02:59:26 +0000 Subject: [PATCH] added autogeneration file / jamfile --- Extras/GPUphysics/Jamfile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Extras/GPUphysics/Jamfile diff --git a/Extras/GPUphysics/Jamfile b/Extras/GPUphysics/Jamfile new file mode 100644 index 000000000..8720a4721 --- /dev/null +++ b/Extras/GPUphysics/Jamfile @@ -0,0 +1,25 @@ +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 ] + [ FIncludes $(TOP)/Extras/PhysicsInterface/CcdPhysics ] + [ FIncludes $(TOP)/Extras/PhysicsInterface/Common ] + ; + MsvcIncDirs $(<) : + "../../Demos/OpenGL" + "../../Extras/PhysicsInterface/CcdPhysics" + "../../Extras/PhysicsInterface/Common" ; + ExternalLibs $(<) : GLUT GLEW ; + + } +} + + +GPUDemo GPUphysics : [ Wildcard *.h *.cpp ] ;