Skip to content

Commit

Permalink
Minor output message update for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed Apr 9, 2016
1 parent 69936f5 commit dcc9b4e
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -342,10 +342,9 @@ else()
set(HAVE_SHARK FALSE)
endif()

# BulletCollision. Force MODULE mode to use the FindBullet.cmake file
# distributed with CMake. Otherwise, we may end up using the
# BulletConfig.cmake file distributed with Bullet, which uses relative paths
# and may break transitive dependencies.
# Bullet. Force MODULE mode to use the FindBullet.cmake file distributed with
# CMake. Otherwise, we may end up using the BulletConfig.cmake file distributed
# with Bullet, which uses relative paths and may break transitive dependencies.
find_package(Bullet COMPONENTS BulletMath BulletCollision MODULE QUIET)

if(BULLET_FOUND)
Expand All @@ -372,14 +371,14 @@ if(BULLET_FOUND)
)

if(BT_USE_DOUBLE_PRECISION)
message(STATUS "Looking for Bullet found (double precision)")
message(STATUS "Looking for Bullet - found (double precision)")
else()
message(STATUS "Looking for Bullet found (single precision)")
message(STATUS "Looking for Bullet - found (single precision)")
endif()

set(HAVE_BULLET_COLLISION TRUE)
else()
message(STATUS "Looking for BulletCollision - NOT found, please install libbullet-dev")
message(STATUS "Looking for Bullet - NOT found, please install libbullet-dev")
set(HAVE_BULLET_COLLISION FALSE)
endif()

Expand Down

0 comments on commit dcc9b4e

Please sign in to comment.