diff options
author | Marvin W <git@larma.de> | 2017-03-23 17:10:45 +0100 |
---|---|---|
committer | Marvin W <git@larma.de> | 2017-03-23 17:16:08 +0100 |
commit | e6f89f8751e6e65d4a36a125cc3fe398098ba504 (patch) | |
tree | 54acce89355ee07b05db761d6d0dad8dad4e0f36 /cmake/FindGObject.cmake | |
parent | ef0483765a0fd567f25b1f0af6df04e8973e5624 (diff) | |
download | dino-e6f89f8751e6e65d4a36a125cc3fe398098ba504.tar.gz dino-e6f89f8751e6e65d4a36a125cc3fe398098ba504.zip |
New CMake
- add install and uninstall targets
- compatibility for systems without pkg-config
Diffstat (limited to 'cmake/FindGObject.cmake')
-rw-r--r-- | cmake/FindGObject.cmake | 20 |
1 files changed, 20 insertions, 0 deletions
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 |