1set(LLVM_LINK_COMPONENTS support) 2 3add_clang_library(clangFormat 4 AffectedRangeManager.cpp 5 BreakableToken.cpp 6 ContinuationIndenter.cpp 7 DefinitionBlockSeparator.cpp 8 Format.cpp 9 FormatToken.cpp 10 FormatTokenLexer.cpp 11 IntegerLiteralSeparatorFixer.cpp 12 MacroCallReconstructor.cpp 13 MacroExpander.cpp 14 NamespaceEndCommentsFixer.cpp 15 QualifierAlignmentFixer.cpp 16 SortJavaScriptImports.cpp 17 TokenAnalyzer.cpp 18 TokenAnnotator.cpp 19 UnwrappedLineFormatter.cpp 20 UnwrappedLineParser.cpp 21 UsingDeclarationsSorter.cpp 22 WhitespaceManager.cpp 23 24 LINK_LIBS 25 clangBasic 26 clangLex 27 clangToolingCore 28 clangToolingInclusions 29 ) 30