Box2DConfig.cmake.in 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. # -*- cmake -*-
  2. #
  3. # Box2dConfig.cmake(.in)
  4. #
  5. # Use the following variables to compile and link against Box2d:
  6. # BOX2D_FOUND - True if Box2d was found on your system
  7. # BOX2D_USE_FILE - The file making Box2d usable
  8. # BOX2D_DEFINITIONS - Definitions needed to build with Box2d
  9. # BOX2D_INCLUDE_DIR - Box2d headers location
  10. # BOX2D_INCLUDE_DIRS - List of directories where Box2d header file are
  11. # BOX2D_LIBRARY - Library name
  12. # BOX2D_LIBRARIES - List of libraries to link against
  13. # BOX2D_LIBRARY_DIRS - List of directories containing Box2d libraries
  14. # BOX2D_ROOT_DIR - The base directory of Box2d
  15. # BOX2D_VERSION_STRING - A human-readable string containing the version
  16. set ( BOX2D_FOUND 1 )
  17. set ( BOX2D_USE_FILE "@BOX2D_USE_FILE@" )
  18. set ( BOX2D_DEFINITIONS "@BOX2D_DEFINITIONS@" )
  19. set ( BOX2D_INCLUDE_DIR "@BOX2D_INCLUDE_DIR@" )
  20. set ( Box2D_INCLUDE_DIRS "@BOX2D_INCLUDE_DIRS@" ) # deprecated
  21. set ( BOX2D_INCLUDE_DIRS "@BOX2D_INCLUDE_DIRS@" )
  22. set ( BOX2D_LIBRARY "@BOX2D_LIBRARY@" )
  23. set ( BOX2D_LIBRARIES "@BOX2D_LIBRARIES@" )
  24. set ( BOX2D_LIBRARY_DIRS "@BOX2D_LIBRARY_DIRS@" )
  25. set ( BOX2D_ROOT_DIR "@CMAKE_INSTALL_PREFIX@" )
  26. set ( BOX2D_VERSION_STRING "@BOX2D_VERSION@" )