diff options
author | Christoph J. Thompson <cjsthompson@gmail.com> | 2013-08-06 06:33:32 +0200 |
---|---|---|
committer | Christoph J. Thompson <cjsthompson@gmail.com> | 2013-08-06 06:33:32 +0200 |
commit | 3cd6aeb541781e23d9129c9503611740134c45e2 (patch) | |
tree | f0fa8bf6e245003b363ed52646b1169bf0e28783 | |
parent | b4664f3f29f48723cf6ba9ba7119710ce0a88a40 (diff) |
On UNIX, if pkg-config is available, use it to find the location of
libconfig's headers.
modified: cmake/FindLIBCONFIG.cmake
-rw-r--r-- | cmake/FindLIBCONFIG.cmake | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cmake/FindLIBCONFIG.cmake b/cmake/FindLIBCONFIG.cmake index d5018240..b3ae4d11 100644 --- a/cmake/FindLIBCONFIG.cmake +++ b/cmake/FindLIBCONFIG.cmake | |||
@@ -5,7 +5,12 @@ | |||
5 | # LIBCONFIG_FOUND | 5 | # LIBCONFIG_FOUND |
6 | # | 6 | # |
7 | 7 | ||
8 | FIND_PATH(LIBCONFIG_INCLUDE_DIR NAMES libconfig.h) | 8 | if (UNIX) |
9 | find_package(PkgConfig QUIET) | ||
10 | pkg_check_modules(_LIBCONFIG QUIET libconfig) | ||
11 | endif () | ||
12 | |||
13 | FIND_PATH(LIBCONFIG_INCLUDE_DIR NAMES libconfig.h HINTS ${_LIBCONFIG_INCLUDEDIR}) | ||
9 | 14 | ||
10 | FIND_LIBRARY(LIBCONFIG_LIBRARY NAMES config) | 15 | FIND_LIBRARY(LIBCONFIG_LIBRARY NAMES config) |
11 | 16 | ||