From 47e869e60fb147caca825380eeaa2a0851d502b9 Mon Sep 17 00:00:00 2001 From: Michael Weiser Date: Mon, 18 Mar 2013 18:15:14 +0100 Subject: cmake: search also for gio-2.0 as GLIB library --- cmake/modules/FindGLIB.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cmake') diff --git a/cmake/modules/FindGLIB.cmake b/cmake/modules/FindGLIB.cmake index 15fb0c75..35a9f9e7 100644 --- a/cmake/modules/FindGLIB.cmake +++ b/cmake/modules/FindGLIB.cmake @@ -6,6 +6,7 @@ # GLIB2_LIBRARIES - Link these to use GLib # # Copyright 2008-2010 Pino Toscano, +# Copyright 2013 Michael Weiser, # # Redistribution and use is allowed according to the terms of the BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. @@ -15,7 +16,7 @@ include(FindPackageHandleStandardArgs) if (NOT WIN32) find_package(PkgConfig REQUIRED) - pkg_check_modules(GLIB2 "glib-2.0>=${GLIB_REQUIRED}" "gobject-2.0>=${GLIB_REQUIRED}") + pkg_check_modules(GLIB2 "glib-2.0>=${GLIB_REQUIRED}" "gobject-2.0>=${GLIB_REQUIRED}" "gio-2.0>=${GLIB_REQUIRED}") find_package_handle_standard_args(GLib DEFAULT_MSG GLIB2_LIBRARIES GLIB2_CFLAGS) -- cgit v1.2.3