cmake: Correct CMake checks for LINUX

Some CMake checks were recently switched from UNIX to LINUX to get them
to not apply to macOS/OSX. Since LINUX doesn't seem to be defined,
switch these checks to UNIX AND NOT APPLE.
This commit is contained in:
Ryan Foster 2017-12-03 19:10:34 -05:00
parent 0daade5f8f
commit 12abbd9205
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ if(APPLE)
include_directories(${COCOA})
endif()
if(LINUX)
if(UNIX AND NOT APPLE)
find_package(X11 REQUIRED)
link_libraries(${X11_LIBRARIES})
include_directories(${X11_INCLUDE_DIR})

View File

@ -23,7 +23,7 @@ endif()
set(glad_include_dirs
PRIVATE ${OPENGL_INCLUDE_DIR})
if (LINUX)
if (UNIX AND NOT APPLE)
list (APPEND glad_include_dirs
PRIVATE ${X11_X11_INCLUDE_PATH})
endif()