mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 02:36:45 +02:00
93 lines
3.4 KiB
CMake
93 lines
3.4 KiB
CMake
# - Try to find the Bullet physics engine
|
|
#
|
|
# This module defines the following variables
|
|
#
|
|
# BULLET_FOUND - Was bullet found
|
|
# BULLET_INCLUDE_DIRS - the Bullet include directories
|
|
# BULLET_LIBRARIES - Link to this, by default it includes
|
|
# all bullet components (Dynamics,
|
|
# Collision, LinearMath, & SoftBody)
|
|
#
|
|
# This module accepts the following variables
|
|
#
|
|
# BULLET_ROOT - Can be set to bullet install path or Windows build path
|
|
#
|
|
# Modified on 2015.01.15 by Andrew Meadows
|
|
# This is an adapted version of the FindBullet.cmake module distributed with Cmake 2.8.12.2
|
|
# The original license for that file is displayed below.
|
|
#
|
|
#=============================================================================
|
|
# Copyright 2009 Kitware, Inc.
|
|
# Copyright 2009 Philip Lowman <philip@yhbt.com>
|
|
#
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
# see accompanying file Copyright.txt for details.
|
|
#
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
# See the License for more information.
|
|
#=============================================================================
|
|
# (To distribute this file outside of CMake, substitute the full
|
|
# License text for the above reference.)
|
|
|
|
|
|
include("${MACRO_DIR}/HifiLibrarySearchHints.cmake")
|
|
hifi_library_search_hints("bullet")
|
|
|
|
macro(_FIND_BULLET_LIBRARY _var)
|
|
find_library(${_var}
|
|
NAMES
|
|
${ARGN}
|
|
HINTS
|
|
${BULLET_SEARCH_DIRS}
|
|
$ENV{BULLET_ROOT_DIR}
|
|
${BULLET_ROOT}
|
|
${BULLET_ROOT}/out/release8/libs
|
|
${BULLET_ROOT}/out/debug8/libs
|
|
PATH_SUFFIXES lib lib/Release lib/Debug
|
|
)
|
|
mark_as_advanced(${_var})
|
|
endmacro()
|
|
|
|
macro(_BULLET_APPEND_LIBRARIES _list _release)
|
|
set(_debug ${_release}_DEBUG)
|
|
if(${_debug})
|
|
set(${_list} ${${_list}} optimized ${${_release}} debug ${${_debug}})
|
|
else()
|
|
set(${_list} ${${_list}} ${${_release}})
|
|
endif()
|
|
endmacro()
|
|
|
|
find_path(BULLET_INCLUDE_DIR NAMES btBulletCollisionCommon.h
|
|
HINTS
|
|
${BULLET_SEARCH_DIRS}/include
|
|
$ENV{BULLET_ROOT_DIR}
|
|
${BULLET_ROOT}/include
|
|
${BULLET_ROOT}/src
|
|
PATH_SUFFIXES bullet
|
|
)
|
|
|
|
# Find the libraries
|
|
|
|
_FIND_BULLET_LIBRARY(BULLET_DYNAMICS_LIBRARY BulletDynamics)
|
|
_FIND_BULLET_LIBRARY(BULLET_DYNAMICS_LIBRARY_DEBUG BulletDynamics_Debug BulletDynamics_d)
|
|
_FIND_BULLET_LIBRARY(BULLET_COLLISION_LIBRARY BulletCollision)
|
|
_FIND_BULLET_LIBRARY(BULLET_COLLISION_LIBRARY_DEBUG BulletCollision_Debug BulletCollision_d)
|
|
_FIND_BULLET_LIBRARY(BULLET_MATH_LIBRARY BulletMath LinearMath)
|
|
_FIND_BULLET_LIBRARY(BULLET_MATH_LIBRARY_DEBUG BulletMath_Debug BulletMath_d LinearMath_Debug LinearMath_d)
|
|
_FIND_BULLET_LIBRARY(BULLET_SOFTBODY_LIBRARY BulletSoftBody)
|
|
_FIND_BULLET_LIBRARY(BULLET_SOFTBODY_LIBRARY_DEBUG BulletSoftBody_Debug BulletSoftBody_d)
|
|
|
|
|
|
find_package_handle_standard_args(Bullet "Could NOT find Bullet, try to set the path to Bullet root folder in the system variable BULLET_ROOT_DIR"
|
|
BULLET_DYNAMICS_LIBRARY BULLET_COLLISION_LIBRARY BULLET_MATH_LIBRARY
|
|
BULLET_INCLUDE_DIR
|
|
)
|
|
|
|
set(BULLET_INCLUDE_DIRS ${BULLET_INCLUDE_DIR})
|
|
if(BULLET_FOUND)
|
|
_BULLET_APPEND_LIBRARIES(BULLET_LIBRARIES BULLET_DYNAMICS_LIBRARY)
|
|
_BULLET_APPEND_LIBRARIES(BULLET_LIBRARIES BULLET_COLLISION_LIBRARY)
|
|
_BULLET_APPEND_LIBRARIES(BULLET_LIBRARIES BULLET_MATH_LIBRARY)
|
|
_BULLET_APPEND_LIBRARIES(BULLET_LIBRARIES BULLET_SOFTBODY_LIBRARY)
|
|
endif()
|