diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2014-02-17 11:28:33 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2014-02-17 11:29:03 +0900 |
commit | 18a7a95de371b4376b62e537ad536df116e19955 (patch) | |
tree | f6900f6b7c4a169f7dbaf87ded484d14d3d855e2 /cmakeconfig | |
parent | 7cc7af14b8016c74f05759cbbd0e3bc8e37302a5 (diff) |
Emotion: Add cmake definition files
Shameless copy & paste + sed from Evas stuff
Diffstat (limited to 'cmakeconfig')
-rw-r--r-- | cmakeconfig/EmotionConfig.cmake.in | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/cmakeconfig/EmotionConfig.cmake.in b/cmakeconfig/EmotionConfig.cmake.in new file mode 100644 index 0000000000..1b47b214f4 --- /dev/null +++ b/cmakeconfig/EmotionConfig.cmake.in | |||
@@ -0,0 +1,32 @@ | |||
1 | # - Try to find emotion | ||
2 | # Once done this will define | ||
3 | # EMOTION_FOUND - System has emotion | ||
4 | # EMOTION_INCLUDE_DIRS - The emotion include directories | ||
5 | # EMOTION_LIBRARIES - The libraries needed to use emotion | ||
6 | # EMOTION_DEFINITIONS - Compiler switches required for using emotion | ||
7 | |||
8 | set(MY_PKG emotion) | ||
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_LIBEMOTION ${_QUIET} ${MY_PKG}) | ||
16 | |||
17 | find_library(EMOTION_LIBRARY | ||
18 | NAMES ${PC_LIBEMOTION_LIBRARIES} | ||
19 | HINTS ${PC_LIBEMOTION_LIBDIR} ${PC_LIBEMOTION_LIBRARY_DIRS} ) | ||
20 | |||
21 | set(EMOTION_DEFINITIONS ${PC_LIBEMOTION_CFLAGS_OTHER}) | ||
22 | set(EMOTION_LIBRARIES ${EMOTION_LIBRARY}) | ||
23 | set(EMOTION_INCLUDE_DIRS ${PC_LIBEMOTION_INCLUDE_DIRS}) | ||
24 | |||
25 | include(FindPackageHandleStandardArgs) | ||
26 | # handle the QUIETLY and REQUIRED arguments and set EMOTION_FOUND to TRUE | ||
27 | # if all listed variables are TRUE | ||
28 | find_package_handle_standard_args(${MY_PKG} DEFAULT_MSG | ||
29 | EMOTION_LIBRARIES EMOTION_INCLUDE_DIRS) | ||
30 | |||
31 | mark_as_advanced(EMOTION_INCLUDE_DIRS EMOTION_LIBRARY EMOTION_LIBRARIES EMOTION_DEFINITIONS) | ||
32 | |||