updated Jam buildsystem to link properly under systems that rely on strict ordering of the link libraries

This commit is contained in:
ejcoumans
2006-10-05 14:05:09 +00:00
parent 3d589a7544
commit 97b287a6bc
5 changed files with 15 additions and 6 deletions

View File

@@ -10,9 +10,13 @@ IncludeDir Extras/PhysicsInterface/CcdPhysics ;
Library bulletopenglsupport :
[ Wildcard *.h *.cpp ] : noinstall
;
CFlags bulletopenglsupport :
[ FIncludes $(TOP)/Extras/PhysicsInterface/Common ]
[ FIncludes $(TOP)/Extras/PhysicsInterface/CcdPhysics ]
CFlags bulletopenglsupport :
[ FIncludes $(TOP)/Extras/PhysicsInterface/Common ]
[ FIncludes $(TOP)/Extras/PhysicsInterface/CcdPhysics ]
;
LibDepends bulletopenglsupport : bulletdynamics ;
ExternalLibs bulletopenglsupport : GLUT ;
}