BulletConfig.cmake.in 1.2 KB

12345678910111213141516171819202122232425
  1. # -*- cmake -*-
  2. #
  3. # BulletConfig.cmake(.in)
  4. #
  5. # Use the following variables to compile and link against Bullet:
  6. # BULLET_FOUND - True if Bullet was found on your system
  7. # BULLET_USE_FILE - The file making Bullet usable
  8. # BULLET_DEFINITIONS - Definitions needed to build with Bullet
  9. # BULLET_INCLUDE_DIR - Directory where Bullet-C-Api.h can be found
  10. # BULLET_INCLUDE_DIRS - List of directories of Bullet and it's dependencies
  11. # BULLET_LIBRARIES - List of libraries to link against Bullet library
  12. # BULLET_LIBRARY_DIRS - List of directories containing Bullet' libraries
  13. # BULLET_ROOT_DIR - The base directory of Bullet
  14. # BULLET_VERSION_STRING - A human-readable string containing the version
  15. set ( BULLET_FOUND 1 )
  16. set ( BULLET_USE_FILE "@BULLET_USE_FILE@" )
  17. set ( BULLET_DEFINITIONS "@BULLET_DEFINITIONS@" )
  18. set ( BULLET_INCLUDE_DIR "@INCLUDE_INSTALL_DIR@" )
  19. set ( BULLET_INCLUDE_DIRS "@INCLUDE_INSTALL_DIR@" )
  20. set ( BULLET_LIBRARIES "@BULLET_LIBRARIES@" )
  21. set ( BULLET_LIBRARY_DIRS "@LIB_DESTINATION@" )
  22. set ( BULLET_ROOT_DIR "@CMAKE_INSTALL_PREFIX@" )
  23. set ( BULLET_VERSION_STRING "@BULLET_VERSION@" )