ソースを参照

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.
Ryan Foster 7 年 前
コミット
12abbd9205

+ 1 - 1
UI/frontend-plugins/frontend-tools/CMakeLists.txt

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

+ 1 - 1
deps/glad/CMakeLists.txt

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