• 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  UnwrappedLineFormatter.cpp
10  UnwrappedLineParser.cpp
11  WhitespaceManager.cpp
12
13  LINK_LIBS
14  clangBasic
15  clangLex
16  clangToolingCore
17  )
18