From e6f89f8751e6e65d4a36a125cc3fe398098ba504 Mon Sep 17 00:00:00 2001 From: Marvin W Date: Thu, 23 Mar 2017 17:10:45 +0100 Subject: New CMake - add install and uninstall targets - compatibility for systems without pkg-config --- cmake/FindGObject.cmake | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 cmake/FindGObject.cmake (limited to 'cmake/FindGObject.cmake') diff --git a/cmake/FindGObject.cmake b/cmake/FindGObject.cmake new file mode 100644 index 00000000..22327469 --- /dev/null +++ b/cmake/FindGObject.cmake @@ -0,0 +1,20 @@ +include(PkgConfigWithFallback) +find_pkg_config_with_fallback(GObject + PKG_CONFIG_NAME gobject-2.0 + LIB_NAMES gobject-2.0 + INCLUDE_NAMES gobject/gobject.h + INCLUDE_DIR_SUFFIXES glib-2.0 glib-2.0/include + DEPENDS GLib +) + +if(GObject_FOUND AND NOT GObject_VERSION) + find_package(GLib) + set(GObject_VERSION ${GLib_VERSION}) +endif() + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(GObject + FOUND_VAR GObject_FOUND + REQUIRED_VARS GObject_LIBRARY + VERSION_VAR GObject_VERSION +) \ No newline at end of file -- cgit v1.2.3-54-g00ecf