소스 검색

examples: CMake: restrict OpenGL deprecation warnings to macOS

Ahmad Fatoum 6 년 전
부모
커밋
0467f32cc1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/CMakeLists.txt

+ 1 - 1
examples/CMakeLists.txt

@@ -24,7 +24,7 @@ foreach(example_dir ${example_dirs})
   list(APPEND example_resources ${resources})
 endforeach()
 
-if (NOT CMAKE_SYSTEM STRLESS "Darwin-18.0.0")
+if (APPLE AND NOT CMAKE_SYSTEM STRLESS "Darwin-18.0.0")
   add_definitions(-DGL_SILENCE_DEPRECATION)
   MESSAGE(AUTHOR_WARNING "OpenGL is deprecated starting with macOS 10.14 (Mojave)!")
 endif()