27 lines
806 B
CMake
27 lines
806 B
CMake
|
|
include(LibFindMacros)
|
|
|
|
# Use pkg-config to get hints about paths
|
|
libfind_pkg_check_modules(MESQUITE_PKGCONF mesquite)
|
|
|
|
# Include dir
|
|
find_path(MESQUITE_INCLUDE_DIR
|
|
NAMES Mesquite_all_headers.hpp
|
|
HINTS
|
|
ThirdParty/packages/mesquite-2.1.2/platforms/linux64GccDPOpt/include
|
|
${MESQUITE_PKGCONF_INCLUDE_DIRS}
|
|
)
|
|
|
|
# Finally the library itself
|
|
find_library(MESQUITE_LIBRARY
|
|
NAMES mesquite
|
|
HINTS
|
|
ThirdParty/packages/mesquite-2.1.2/platforms/linux64GccDPOpt/lib
|
|
${MESQUITE_PKGCONF_LIBRARY_DIRS}
|
|
)
|
|
|
|
# Set the include dir variables and the libraries and let libfind_process do the rest.
|
|
# NOTE: Singular variables for this library, plural for libraries this this lib depends on.
|
|
set(MESQUITE_PROCESS_INCLUDES MESQUITE_INCLUDE_DIR)
|
|
set(MESQUITE_PROCESS_LIBS MESQUITE_LIBRARY)
|
|
libfind_process(MESQUITE)
|