mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-04 17:11:44 +03:00
21 lines
752 B
CMake
21 lines
752 B
CMake
# Find the libconfig++ includes and library
|
|
#
|
|
# This module defines
|
|
# LIBCONFIG++_INCLUDE_DIR, where to find libconfig++ include files, etc.
|
|
# LIBCONFIG++_LIBRARY, the library to link against to use libconfig++.
|
|
# LIBCONFIG++_FOUND, If false, do not try to use libconfig++.
|
|
|
|
set(LIBCONFIG++_FOUND FALSE)
|
|
|
|
find_path(LIBCONFIG++_INCLUDE_DIR libconfig.h++)
|
|
|
|
find_library(LIBCONFIG++_LIBRARY config++)
|
|
|
|
if (LIBCONFIG++_INCLUDE_DIR AND LIBCONFIG++_LIBRARY)
|
|
set(LIBCONFIG++_FOUND TRUE)
|
|
endif (LIBCONFIG++_INCLUDE_DIR AND LIBCONFIG++_LIBRARY)
|
|
|
|
# Use the default CMake facilities for handling QUIET/REQUIRED.
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(LIBCONFIG++
|
|
REQUIRED_VARS LIBCONFIG++_INCLUDE_DIR LIBCONFIG++_LIBRARY)
|