2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

Removed the need for X11 on OS X

It only causes issues when someone (who doesn't need it) doesn't have it.
This commit is contained in:
archshift 2014-09-02 23:32:15 -07:00
parent c0e48432cd
commit 051b162add

View file

@ -65,7 +65,10 @@ if (ENABLE_GLFW)
set(GLFW_LIBRARIES glfw3)
else()
find_package(X11 REQUIRED)
if (NOT APPLE)
find_package(X11 REQUIRED)
endif()
find_package(PkgConfig REQUIRED)
pkg_search_module(GLFW REQUIRED glfw3)
endif()