1set(LLVM_LINK_COMPONENTS
2  ${LLVM_TARGETS_TO_BUILD}
3  asmparser
4  bitreader
5  support
6  mc
7  )
8
9add_clang_unittest(FormatTests
10  FormatTest.cpp
11  )
12
13target_link_libraries(FormatTests
14  clangAST
15  clangFormat
16  clangTooling
17  clangRewriteCore
18  )
19