2022-06-25 11:52:00 +08:00

32 lines
1.3 KiB
CMake
Executable File

# -*- cmake -*-
#
# Box2dConfig.cmake(.in)
#
# Use the following variables to compile and link against Box2d:
# BOX2D_FOUND - True if Box2d was found on your system
# BOX2D_USE_FILE - The file making Box2d usable
# BOX2D_DEFINITIONS - Definitions needed to build with Box2d
# BOX2D_INCLUDE_DIR - Box2d headers location
# BOX2D_INCLUDE_DIRS - List of directories where Box2d header file are
# BOX2D_LIBRARY - Library name
# BOX2D_LIBRARIES - List of libraries to link against
# BOX2D_LIBRARY_DIRS - List of directories containing Box2d libraries
# BOX2D_ROOT_DIR - The base directory of Box2d
# BOX2D_VERSION_STRING - A human-readable string containing the version
set ( BOX2D_FOUND 1 )
set ( BOX2D_USE_FILE "@BOX2D_USE_FILE@" )
set ( BOX2D_DEFINITIONS "@BOX2D_DEFINITIONS@" )
set ( BOX2D_INCLUDE_DIR "@BOX2D_INCLUDE_DIR@" )
set ( Box2D_INCLUDE_DIRS "@BOX2D_INCLUDE_DIRS@" ) # deprecated
set ( BOX2D_INCLUDE_DIRS "@BOX2D_INCLUDE_DIRS@" )
set ( BOX2D_LIBRARY "@BOX2D_LIBRARY@" )
set ( BOX2D_LIBRARIES "@BOX2D_LIBRARIES@" )
set ( BOX2D_LIBRARY_DIRS "@BOX2D_LIBRARY_DIRS@" )
set ( BOX2D_ROOT_DIR "@CMAKE_INSTALL_PREFIX@" )
set ( BOX2D_VERSION_STRING "@BOX2D_VERSION@" )