CMake: Temporarily removing find clang block

New libs have not landed in the SVN repository. Once they are up, this commit will be reverted.
This commit is contained in:
Sebastián Barschkis 2021-02-24 16:12:50 +01:00
parent c0b2c75c44
commit c778fd981e
Notes: blender-bot 2023-02-14 03:31:57 +01:00
Referenced by commit 9a1b29e16c, CMake: Removed temporarily disabled clang block
1 changed files with 7 additions and 6 deletions

View File

@ -333,12 +333,13 @@ if(WITH_LLVM)
if(NOT LLVM_FOUND)
message(FATAL_ERROR "LLVM not found.")
endif()
if(WITH_CLANG)
find_package(Clang)
if(NOT CLANG_FOUND)
message(FATAL_ERROR "Clang not found.")
endif()
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()
endif()