[Release] Webkit2-efl-123997_0.11.46
[framework/web/webkit-efl.git] / Source / cmake / FindVConf.cmake
1 # - Try to find VConf
2 # Once done, this will define
3 #
4 #  VConf_FOUND - system has libvconf-0
5 #  VConf_INCLUDE_DIRS - the libvconf-0 include directories
6 #  VConf_LIBRARIES - link these to use libvconf-0
7
8 include(LibFindMacros)
9
10 # Use pkg-config to get hints about paths
11 libfind_pkg_check_modules(VConf_PKGCONF vconf)
12
13 # Include dir
14 find_path(VConf_INCLUDE_DIR
15   NAMES vconf.h
16   PATHS ${VConf_PKGCONF_INCLUDE_DIRS}
17   PATH_SUFFIXES vconf
18 )
19
20 # Finally the library itself
21 find_library(VConf_LIBRARY
22   NAMES vconf
23   PATHS ${VConf_PKGCONF_LIBRARY_DIRS}
24 )
25
26 # Set the include dir variables and the libraries and let libfind_process do the rest.
27 # NOTE: Singular variables for this library, plural for libraries this this lib depends on.
28 set(VConf_PROCESS_INCLUDES VConf_INCLUDE_DIR VConf_INCLUDE_DIRS)
29 set(VConf_PROCESS_LIBS VConf_LIBRARY VConf_LIBRARIES)
30 libfind_process(VConf)
31