[Clang] Fix missing libraries for the include cleaner check

Summary:
Recently, the changes in https://reviews.llvm.org/D148793 introduced
some extra dependencies that caused link failured on my machine. This
patch adds the necessary libraries to resolve the link failures and
allow me to build again.
This commit is contained in:
Joseph Huber
2023-06-02 12:42:15 -05:00
parent 4fcbe5fbed
commit 860e439fb2

View File

@@ -55,8 +55,11 @@ clang_target_link_libraries(clangTidyMiscModule
clangAST
clangASTMatchers
clangBasic
clangFormat
clangIncludeCleaner
clangLex
clangSerialization
clangTooling
clangToolingInclusions
clangToolingInclusionsStdlib
)