53 lines
1.7 KiB
CMake
53 lines
1.7 KiB
CMake
|
# - Try to find tommath include dirs and libraries
|
||
|
#
|
||
|
# Usage of this module as follows:
|
||
|
#
|
||
|
# find_package(TomMath)
|
||
|
#
|
||
|
# Variables used by this module, they can change the default behaviour and need
|
||
|
# to be set before calling find_package:
|
||
|
#
|
||
|
# TomMath_ROOT_DIR Set this variable to the root installation of
|
||
|
# TomMath if the module has problems finding the
|
||
|
# proper installation path.
|
||
|
#
|
||
|
# Variables defined by this module:
|
||
|
#
|
||
|
# TomMath_FOUND System has TomMath, include and library dirs found
|
||
|
# TomMath_INCLUDE_DIR The TomMath include directories.
|
||
|
# TomMath_LIBRARIES_STATIC The TomMath libraries.
|
||
|
# TomMath_LIBRARIES_SHARED The TomMath libraries.
|
||
|
|
||
|
find_path(TomMath_ROOT_DIR
|
||
|
NAMES include/tommath.h CMakeLists.txt LICENSE
|
||
|
HINTS ${TomMath_ROOT_DIR}
|
||
|
)
|
||
|
|
||
|
find_path(TomMath_INCLUDE_DIR
|
||
|
NAMES tommath.h tommath_private.h
|
||
|
HINTS ${TomMath_ROOT_DIR}/include
|
||
|
)
|
||
|
|
||
|
find_library(TomMath_LIBRARIES_STATIC
|
||
|
NAMES tommath.lib tommath.a
|
||
|
PATH_SUFFIXES out/win32_amd64/Release out/win32/Release out/win32_x64/Release
|
||
|
HINTS ${TomMath_ROOT_DIR} ${TomMath_ROOT_DIR}/build ${TomMath_ROOT_DIR}/libs ${TomMath_ROOT_DIR}/out/
|
||
|
)
|
||
|
|
||
|
find_library(TomMath_LIBRARIES_SHARED
|
||
|
NAMES tommath.dll tommath.so
|
||
|
PATH_SUFFIXES out/win32_amd64/Release out/win32/Release out/win32_x64/Release
|
||
|
HINTS ${TomMath_ROOT_DIR} ${TomMath_ROOT_DIR}/build ${TomMath_ROOT_DIR}/libs ${TomMath_ROOT_DIR}/out/
|
||
|
)
|
||
|
|
||
|
include(FindPackageHandleStandardArgs)
|
||
|
find_package_handle_standard_args(TomMath DEFAULT_MSG
|
||
|
TomMath_INCLUDE_DIR
|
||
|
)
|
||
|
|
||
|
mark_as_advanced(
|
||
|
TomMath_ROOT_DIR
|
||
|
TomMath_INCLUDE_DIR
|
||
|
TomMath_LIBRARIES_STATIC
|
||
|
TomMath_LIBRARIES_SHARED
|
||
|
)
|