mirror of
https://github.com/bulletphysics/bullet3
synced 2025-01-11 18:00:06 +00:00
15 lines
267 B
CMake
15 lines
267 B
CMake
# 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
|
|
)
|
|
|