cmake: Fix FindGio.cmake to find libgio

Find actual libgio-2.0.so instead of libgobject-2.0.so.
This commit is contained in:
Timo Gurr
2022-12-05 14:22:14 -05:00
committed by Ryan Foster
parent 7fdc9c7254
commit ad034bac0e
+1 -1
View File
@@ -21,7 +21,7 @@ find_path(
find_library(
GIO_LIB
NAMES ${_GIO_LIBRARIES} gio-2.0 libgio-2.0 gio-unix-2.0
NAMES gio-2.0 libgio-2.0 gio-unix-2.0
HINTS ${_GIO_LIBRARY_DIRS}
PATHS /usr/lib /usr/local/lib /opt/local/lib /sw/lib)