15 lines
260 B
CMake
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
|
|
)
|
|
|