Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnkit Meel <ankitjmeel@gmail.com>2021-03-31 22:43:22 +0300
committerAnkit Meel <ankitjmeel@gmail.com>2021-03-31 22:43:22 +0300
commit1a100d2d78c75c9a6ac015606cc16698e7775682 (patch)
treeca8d25bf612d9ac9686b780e50f59b785e53f665 /build_files
parentf061de9b3e6b717e393ac5740927965b329668c7 (diff)
Cleanup/CMake: tweak messages in platform_apple
Diffstat (limited to 'build_files')
-rw-r--r--build_files/cmake/platform/platform_apple.cmake5
1 files changed, 3 insertions, 2 deletions
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()