mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-04 14:57:44 +00:00
20 lines
525 B
CMake
20 lines
525 B
CMake
|
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
|
||
|
)
|