Home | History | Annotate | Download | only in Format
      1 set(LLVM_LINK_COMPONENTS support)
      2 
      3 add_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