summaryrefslogtreecommitdiff
path: root/cmakeconfig
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2014-02-17 11:28:33 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2014-02-17 11:29:03 +0900
commit18a7a95de371b4376b62e537ad536df116e19955 (patch)
treef6900f6b7c4a169f7dbaf87ded484d14d3d855e2 /cmakeconfig
parent7cc7af14b8016c74f05759cbbd0e3bc8e37302a5 (diff)
downloadefl-18a7a95de371b4376b62e537ad536df116e19955.tar.gz
Emotion: Add cmake definition files
Shameless copy & paste + sed from Evas stuff
Diffstat (limited to 'cmakeconfig')
-rw-r--r--cmakeconfig/EmotionConfig.cmake.in32
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 @@
+# - Try to find emotion
+# Once done this will define
+# EMOTION_FOUND - System has emotion
+# EMOTION_INCLUDE_DIRS - The emotion include directories
+# EMOTION_LIBRARIES - The libraries needed to use emotion
+# EMOTION_DEFINITIONS - Compiler switches required for using emotion
+
+set(MY_PKG emotion)
+
+find_package(PkgConfig)
+if ("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_GREATER "2.8.1")
+ # "QUIET" was introduced in 2.8.2
+ set(_QUIET QUIET)
+endif ()
+pkg_check_modules(PC_LIBEMOTION ${_QUIET} ${MY_PKG})
+
+find_library(EMOTION_LIBRARY
+ NAMES ${PC_LIBEMOTION_LIBRARIES}
+ HINTS ${PC_LIBEMOTION_LIBDIR} ${PC_LIBEMOTION_LIBRARY_DIRS} )
+
+set(EMOTION_DEFINITIONS ${PC_LIBEMOTION_CFLAGS_OTHER})
+set(EMOTION_LIBRARIES ${EMOTION_LIBRARY})
+set(EMOTION_INCLUDE_DIRS ${PC_LIBEMOTION_INCLUDE_DIRS})
+
+include(FindPackageHandleStandardArgs)
+# handle the QUIETLY and REQUIRED arguments and set EMOTION_FOUND to TRUE
+# if all listed variables are TRUE
+find_package_handle_standard_args(${MY_PKG} DEFAULT_MSG
+ EMOTION_LIBRARIES EMOTION_INCLUDE_DIRS)
+
+mark_as_advanced(EMOTION_INCLUDE_DIRS EMOTION_LIBRARY EMOTION_LIBRARIES EMOTION_DEFINITIONS)
+