mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 19:50:38 +02:00
13 lines
346 B
CMake
13 lines
346 B
CMake
#
|
|
# IncludeBullet.cmake
|
|
#
|
|
# Copyright 2014 High Fidelity, Inc.
|
|
#
|
|
# Distributed under the Apache License, Version 2.0.
|
|
# See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
#
|
|
|
|
macro(INCLUDE_BULLET)
|
|
find_package(Bullet REQUIRED)
|
|
include_directories("${BULLET_INCLUDE_DIRS}")
|
|
endmacro(INCLUDE_BULLET)
|