mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 04:47:53 +00:00
Merge pull request #89 from archshift/X11-OSX
Removed the need for X11 on OS X
This commit is contained in:
commit
fda291816b
1 changed files with 4 additions and 1 deletions
|
@ -65,7 +65,10 @@ if (ENABLE_GLFW)
|
|||
|
||||
set(GLFW_LIBRARIES glfw3)
|
||||
else()
|
||||
if (NOT APPLE)
|
||||
find_package(X11 REQUIRED)
|
||||
endif()
|
||||
|
||||
find_package(PkgConfig REQUIRED)
|
||||
pkg_search_module(GLFW REQUIRED glfw3)
|
||||
endif()
|
||||
|
|
Loading…
Reference in a new issue