0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

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-10-05 13:11:12 +02:00 committed by Ryan Foster
parent 7fdc9c7254
commit ad034bac0e

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)