[Bf-blender-cvs] [1a100d2d78c] master: Cleanup/CMake: tweak messages in platform_apple

Ankit Meel noreply at git.blender.org
Wed Mar 31 21:57:48 CEST 2021


Commit: 1a100d2d78c75c9a6ac015606cc16698e7775682
Author: Ankit Meel
Date:   Thu Apr 1 01:13:22 2021 +0530
Branches: master
https://developer.blender.org/rB1a100d2d78c75c9a6ac015606cc16698e7775682

Cleanup/CMake: tweak messages in platform_apple

===================================================================

M	build_files/cmake/platform/platform_apple.cmake

===================================================================

diff --git a/build_files/cmake/platform/platform_apple.cmake b/build_files/cmake/platform/platform_apple.cmake
index fd3f1f6f6a8..a5eee46349a 100644
--- a/build_files/cmake/platform/platform_apple.cmake
+++ b/build_files/cmake/platform/platform_apple.cmake
@@ -104,6 +104,7 @@ endif()
 if(WITH_USD)
   find_package(USD)
   if(NOT USD_FOUND)
+    message(STATUS "USD not found, disabling WITH_USD")
     set(WITH_USD OFF)
   endif()
 endif()
@@ -310,7 +311,7 @@ if(WITH_OPENCOLORIO)
 
   if(NOT OPENCOLORIO_FOUND)
     set(WITH_OPENCOLORIO OFF)
-    message(STATUS "OpenColorIO not found")
+    message(STATUS "OpenColorIO not found, disabling WITH_OPENCOLORIO")
   endif()
 endif()
 
@@ -387,7 +388,7 @@ if(WITH_OPENIMAGEDENOISE)
 
   if(NOT OPENIMAGEDENOISE_FOUND)
     set(WITH_OPENIMAGEDENOISE OFF)
-    message(STATUS "OpenImageDenoise not found")
+    message(STATUS "OpenImageDenoise not found, disabling WITH_OPENIMAGEDENOISE")
   endif()
 endif()



More information about the Bf-blender-cvs mailing list