CMakeLists.txt 489 B

123456789101112131415161718192021222324
  1. set(LLVM_LINK_COMPONENTS support)
  2. add_clang_library(clangFormat
  3. AffectedRangeManager.cpp
  4. BreakableToken.cpp
  5. ContinuationIndenter.cpp
  6. Format.cpp
  7. FormatToken.cpp
  8. FormatTokenLexer.cpp
  9. NamespaceEndCommentsFixer.cpp
  10. SortJavaScriptImports.cpp
  11. TokenAnalyzer.cpp
  12. TokenAnnotator.cpp
  13. UnwrappedLineFormatter.cpp
  14. UnwrappedLineParser.cpp
  15. UsingDeclarationsSorter.cpp
  16. WhitespaceManager.cpp
  17. LINK_LIBS
  18. clangBasic
  19. clangLex
  20. clangToolingCore
  21. clangToolingInclusions
  22. )