CMakeLists.txt 304 B

1234567891011121314151617
  1. set(LLVM_LINK_COMPONENTS support)
  2. add_clang_library(clangFormat
  3. BreakableToken.cpp
  4. ContinuationIndenter.cpp
  5. Format.cpp
  6. FormatToken.cpp
  7. TokenAnnotator.cpp
  8. UnwrappedLineFormatter.cpp
  9. UnwrappedLineParser.cpp
  10. WhitespaceManager.cpp
  11. LINK_LIBS
  12. clangBasic
  13. clangLex
  14. clangToolingCore
  15. )