Files
bullet3/Demos/HelloWorld/CMakeLists.txt
2009-11-17 03:03:27 +00:00

15 lines
260 B
CMake

# HelloWorld is a minimal sample creating, stepping and deleting a Bullet dynamics world
INCLUDE_DIRECTORIES(
${BULLET_PHYSICS_SOURCE_DIR}/src
)
LINK_LIBRARIES(
BulletDynamics BulletCollision LinearMath
)
ADD_EXECUTABLE(AppHelloWorld
HelloWorld.cpp
)