0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00

libobs: Make sure X11_XCB is not linked with apple systems

This commit is contained in:
jp9000 2016-09-23 12:15:02 -07:00
parent 11ed262a36
commit d96092a0c9

View File

@ -13,7 +13,9 @@ endif()
if(UNIX)
find_package(DBus QUIET)
find_package(X11_XCB REQUIRED)
if (NOT APPLE)
find_package(X11_XCB REQUIRED)
endif()
else()
set(HAVE_DBUS "0")
endif()