diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2015-03-17 19:19:28 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2015-03-17 19:29:14 +0900 |
commit | 841890a7b63d5c9dc4c73e28856d43981f017ef4 (patch) | |
tree | b005a1ed87f1d6198710101999a8946a3807c531 /cmakeconfig | |
parent | 59532c7d9692d70d8fb6b59a76a0611aec15ce3f (diff) |
cmake: Add files for Emile, the serial killer
Diffstat (limited to 'cmakeconfig')
-rw-r--r-- | cmakeconfig/EmileConfig.cmake.in | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/cmakeconfig/EmileConfig.cmake.in b/cmakeconfig/EmileConfig.cmake.in new file mode 100644 index 0000000000..68c284cf37 --- /dev/null +++ b/cmakeconfig/EmileConfig.cmake.in | |||
@@ -0,0 +1,32 @@ | |||
1 | # - Try to find emile | ||
2 | # Once done this will define | ||
3 | # EMILE_FOUND - System has emile | ||
4 | # EMILE_INCLUDE_DIRS - The emile include directories | ||
5 | # EMILE_LIBRARIES - The libraries needed to use emile | ||
6 | # EMILE_DEFINITIONS - Compiler switches required for using emile | ||
7 | |||
8 | set(MY_PKG emile) | ||
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_LIBEMILE ${_QUIET} ${MY_PKG}) | ||
16 | |||
17 | find_library(EMILE_LIBRARY | ||
18 | NAMES ${PC_LIBEMILE_LIBRARIES} | ||
19 | HINTS ${PC_LIBEMILE_LIBDIR} ${PC_LIBEMILE_LIBRARY_DIRS} ) | ||
20 | |||
21 | set(EMILE_DEFINITIONS ${PC_LIBEMILE_CFLAGS_OTHER}) | ||
22 | set(EMILE_LIBRARIES ${EMILE_LIBRARY}) | ||
23 | set(EMILE_INCLUDE_DIRS ${PC_LIBEMILE_INCLUDE_DIRS}) | ||
24 | |||
25 | include(FindPackageHandleStandardArgs) | ||
26 | # handle the QUIETLY and REQUIRED arguments and set EMILE_FOUND to TRUE | ||
27 | # if all listed variables are TRUE | ||
28 | find_package_handle_standard_args(${MY_PKG} DEFAULT_MSG | ||
29 | EMILE_LIBRARIES EMILE_INCLUDE_DIRS) | ||
30 | |||
31 | mark_as_advanced(EMILE_INCLUDE_DIRS EMILE_LIBRARY EMILE_LIBRARIES EMILE_DEFINITIONS) | ||
32 | |||