Browse Source

Removed the need for X11 on OS X

It only causes issues when someone (who doesn't need it) doesn't have it.
pull/15/merge
archshift 11 years ago
parent
commit
051b162add
  1. 5
      CMakeLists.txt

5
CMakeLists.txt

@ -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()

Loading…
Cancel
Save