summaryrefslogtreecommitdiff
path: root/cmakeconfig/EmileConfig.cmake.in
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2015-03-17 19:19:28 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2015-03-17 19:29:14 +0900
commit841890a7b63d5c9dc4c73e28856d43981f017ef4 (patch)
treeb005a1ed87f1d6198710101999a8946a3807c531 /cmakeconfig/EmileConfig.cmake.in
parent59532c7d9692d70d8fb6b59a76a0611aec15ce3f (diff)
downloadefl-841890a7b63d5c9dc4c73e28856d43981f017ef4.tar.gz
cmake: Add files for Emile, the serial killer
Diffstat (limited to 'cmakeconfig/EmileConfig.cmake.in')
-rw-r--r--cmakeconfig/EmileConfig.cmake.in32
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 @@
+# - Try to find emile
+# Once done this will define
+# EMILE_FOUND - System has emile
+# EMILE_INCLUDE_DIRS - The emile include directories
+# EMILE_LIBRARIES - The libraries needed to use emile
+# EMILE_DEFINITIONS - Compiler switches required for using emile
+
+set(MY_PKG emile)
+
+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_LIBEMILE ${_QUIET} ${MY_PKG})
+
+find_library(EMILE_LIBRARY
+ NAMES ${PC_LIBEMILE_LIBRARIES}
+ HINTS ${PC_LIBEMILE_LIBDIR} ${PC_LIBEMILE_LIBRARY_DIRS} )
+
+set(EMILE_DEFINITIONS ${PC_LIBEMILE_CFLAGS_OTHER})
+set(EMILE_LIBRARIES ${EMILE_LIBRARY})
+set(EMILE_INCLUDE_DIRS ${PC_LIBEMILE_INCLUDE_DIRS})
+
+include(FindPackageHandleStandardArgs)
+# handle the QUIETLY and REQUIRED arguments and set EMILE_FOUND to TRUE
+# if all listed variables are TRUE
+find_package_handle_standard_args(${MY_PKG} DEFAULT_MSG
+ EMILE_LIBRARIES EMILE_INCLUDE_DIRS)
+
+mark_as_advanced(EMILE_INCLUDE_DIRS EMILE_LIBRARY EMILE_LIBRARIES EMILE_DEFINITIONS)
+