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:
authorSebastián Barschkis <sebbas@sebbas.org>2021-02-24 22:18:07 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2021-02-24 22:23:42 +0300
commit9a1b29e16c216c2827f28214d4f7af4ee072beec (patch)
treebd4e5ed743dcdef63408d8970d087ccfd2247d04
parent7a8a8241b930826a43ca2ddb37c531ba73b5317e (diff)
CMake: Removed temporarily disabled clang block
Was disabled in rBc778fd981e63. Libraries have been updated in rBL62576.
-rw-r--r--build_files/cmake/platform/platform_apple.cmake13
1 files changed, 6 insertions, 7 deletions
diff --git a/build_files/cmake/platform/platform_apple.cmake b/build_files/cmake/platform/platform_apple.cmake
index c2e46206046..31302bf1100 100644
--- a/build_files/cmake/platform/platform_apple.cmake
+++ b/build_files/cmake/platform/platform_apple.cmake
@@ -333,13 +333,12 @@ if(WITH_LLVM)
if(NOT LLVM_FOUND)
message(FATAL_ERROR "LLVM not found.")
endif()
-# Temporarily removing clang - new libs still need to be committed
-# if(WITH_CLANG)
-# find_package(Clang)
-# if(NOT CLANG_FOUND)
-# message(FATAL_ERROR "Clang not found.")
-# endif()
-# endif()
+ if(WITH_CLANG)
+ find_package(Clang)
+ if(NOT CLANG_FOUND)
+ message(FATAL_ERROR "Clang not found.")
+ endif()
+ endif()
endif()