mirror of
https://github.com/bulletphysics/bullet3
synced 2025-01-11 01:40:10 +00:00
23 lines
692 B
Plaintext
23 lines
692 B
Plaintext
SubDir TOP Demos ConvexDecompositionDemo ;
|
|
|
|
#some demos need extra functionality, Collada / ConvexDecomposition etc.
|
|
|
|
rule ExtraDemo2
|
|
|
|
{
|
|
Application $(<) : $(>) : noinstall console nomanifest ;
|
|
LinkWith $(<) : bulletopenglsupport convexdecomposition bulletdynamics bulletcollision bulletmath ;
|
|
CFlags $(<) :
|
|
[ FIncludes $(TOP)/Demos/OpenGL ]
|
|
[ FIncludes $(TOP)/Extras/ConvexDecomposition ]
|
|
[ FIncludes $(TOP)/Extras/ConvexHull ]
|
|
;
|
|
|
|
MsvcIncDirs $(<) :
|
|
"../../Demos/OpenGL"
|
|
"../../Extras/ConvexDecomposition"
|
|
"../../Extras/ConvexHull" ;
|
|
}
|
|
|
|
ExtraDemo2 ConvexDecompositionDemo : [ Wildcard *.h *.cpp ] ;
|