aboutsummaryrefslogtreecommitdiff
path: root/cmake/FindGIO.cmake
diff options
context:
space:
mode:
authorMarvin W <git@larma.de>2017-03-23 17:10:45 +0100
committerMarvin W <git@larma.de>2017-03-23 17:16:08 +0100
commite6f89f8751e6e65d4a36a125cc3fe398098ba504 (patch)
tree54acce89355ee07b05db761d6d0dad8dad4e0f36 /cmake/FindGIO.cmake
parentef0483765a0fd567f25b1f0af6df04e8973e5624 (diff)
downloaddino-e6f89f8751e6e65d4a36a125cc3fe398098ba504.tar.gz
dino-e6f89f8751e6e65d4a36a125cc3fe398098ba504.zip
New CMake
- add install and uninstall targets - compatibility for systems without pkg-config
Diffstat (limited to 'cmake/FindGIO.cmake')
-rw-r--r--cmake/FindGIO.cmake20
1 files changed, 20 insertions, 0 deletions
diff --git a/cmake/FindGIO.cmake b/cmake/FindGIO.cmake
new file mode 100644
index 00000000..d65749dd
--- /dev/null
+++ b/cmake/FindGIO.cmake
@@ -0,0 +1,20 @@
+include(PkgConfigWithFallback)
+find_pkg_config_with_fallback(GIO
+ PKG_CONFIG_NAME gio-2.0
+ LIB_NAMES gio-2.0
+ INCLUDE_NAMES gio/gio.h
+ INCLUDE_DIR_SUFFIXES glib-2.0 glib-2.0/include
+ DEPENDS GObject
+)
+
+if(GIO_FOUND AND NOT GIO_VERSION)
+ find_package(GLib)
+ set(GIO_VERSION ${GLib_VERSION})
+endif()
+
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_args(GIO
+ FOUND_VAR GIO_FOUND
+ REQUIRED_VARS GIO_LIBRARY
+ VERSION_VAR GIO_VERSION
+) \ No newline at end of file