fixed cmake/jam for HelloWorld sample

This commit is contained in:
ejcoumans
2007-12-15 02:42:33 +00:00
parent a77fca6394
commit 4a3c2506d4
6 changed files with 25 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
# HelloWorld is a minimal sample creating, stepping and deleting a Bullet dynamics world
INCLUDE_DIRECTORIES(
${BULLET_PHYSICS_SOURCE_DIR}/src }
)
LINK_LIBRARIES(
LibBulletDynamics LibBulletCollision LibLinearMath
)
ADD_EXECUTABLE(HelloWorld
HelloWorld.cpp
)