Files
bullet3/Demos/HelloWorld/CMakeLists.txt

15 lines
261 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
)