• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1set(LLVM_LINK_COMPONENTS support)
2
3add_clang_library(clangFormat
4  BreakableToken.cpp
5  ContinuationIndenter.cpp
6  Format.cpp
7  FormatToken.cpp
8  TokenAnnotator.cpp
9  UnwrappedLineParser.cpp
10  WhitespaceManager.cpp
11
12  LINK_LIBS
13  clangBasic
14  clangLex
15  clangTooling
16  )
17