[Release] Webkit2-efl-123997_0.11.46
[framework/web/webkit-efl.git] / Source / cmake / FindEFREET.cmake
1 # - Try to find EFREET
2 # Once done, this will define
3 #
4 #  EFREET_FOUND - system has efreet
5 #  EFREET_INCLUDE_DIRS - the efreet include directories
6 #  EFREET_LIBRARIES - link these to use efreet
7
8 include(LibFindMacros)
9
10 # Use pkg-config to get hints about paths
11 libfind_pkg_check_modules(EFREET_PKGCONF efreet)
12
13 # Include dir
14 find_path(EFREET_INCLUDE_DIR
15   NAMES Efreet.h
16   PATHS ${EFREET_PKGCONF_INCLUDE_DIRS}
17 )
18
19 # Finally the library itself
20 find_library(EFREET_LIBRARY
21   NAMES efreet
22   PATHS ${EFREET_PKGCONF_LIBRARY_DIRS}
23 )
24
25 # Set the include dir variables and the libraries and let libfind_process do the rest.
26 # NOTE: Singular variables for this library, plural for libraries this this lib depends on.
27 set(EFREET_PROCESS_INCLUDES EFREET_INCLUDE_DIR EFREET_INCLUDE_DIRS)
28 set(EFREET_PROCESS_LIBS EFREET_LIBRARY EFREET_LIBRARIES)
29 libfind_process(EFREET)
30