diff options
author | Tom Hacohen <tom@stosb.com> | 2014-09-22 16:08:21 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2014-09-22 16:08:37 +0100 |
commit | c51dbe3a2cb2f8fb8745bb8eb05834ba7e90243f (patch) | |
tree | 0f2e0e8c60020e97d56b413f025a96b666864e01 /cmakeconfig | |
parent | 8ebf5d49b26bc7a9310a6319d280a6dd42d6dc07 (diff) |
Add missing cmake config for efl libs.
Diffstat (limited to 'cmakeconfig')
-rw-r--r-- | cmakeconfig/EflConfig.cmake.in | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/cmakeconfig/EflConfig.cmake.in b/cmakeconfig/EflConfig.cmake.in new file mode 100644 index 0000000000..859747493e --- /dev/null +++ b/cmakeconfig/EflConfig.cmake.in | |||
@@ -0,0 +1,32 @@ | |||
1 | # - Try to find efl | ||
2 | # Once done this will define | ||
3 | # EFL_FOUND - System has efl | ||
4 | # EFL_INCLUDE_DIRS - The efl include directories | ||
5 | # EFL_LIBRARIES - The libraries needed to use efl | ||
6 | # EFL_DEFINITIONS - Compiler switches required for using efl | ||
7 | |||
8 | set(MY_PKG efl) | ||
9 | |||
10 | find_package(PkgConfig) | ||
11 | if ("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_GREATER "2.8.1") | ||
12 | # "QUIET" was introduced in 2.8.2 | ||
13 | set(_QUIET QUIET) | ||
14 | endif () | ||
15 | pkg_check_modules(PC_LIBEFL ${_QUIET} ${MY_PKG}) | ||
16 | |||
17 | find_library(EFL_LIBRARY | ||
18 | NAMES ${PC_LIBEFL_LIBRARIES} | ||
19 | HINTS ${PC_LIBEFL_LIBDIR} ${PC_LIBEFL_LIBRARY_DIRS} ) | ||
20 | |||
21 | set(EFL_DEFINITIONS ${PC_LIBEFL_CFLAGS_OTHER}) | ||
22 | set(EFL_LIBRARIES ${EFL_LIBRARY}) | ||
23 | set(EFL_INCLUDE_DIRS ${PC_LIBEFL_INCLUDE_DIRS}) | ||
24 | |||
25 | include(FindPackageHandleStandardArgs) | ||
26 | # handle the QUIETLY and REQUIRED arguments and set EFL_FOUND to TRUE | ||
27 | # if all listed variables are TRUE | ||
28 | find_package_handle_standard_args(${MY_PKG} DEFAULT_MSG | ||
29 | EFL_LIBRARIES EFL_INCLUDE_DIRS) | ||
30 | |||
31 | mark_as_advanced(EFL_INCLUDE_DIRS EFL_LIBRARY EFL_LIBRARIES EFL_DEFINITIONS) | ||
32 | |||