1set(LLVM_LINK_COMPONENTS
2  Support
3  )
4
5add_clang_unittest(LexTests
6  LexerTest.cpp
7  PPCallbacksTest.cpp
8  PPConditionalDirectiveRecordTest.cpp
9  )
10
11target_link_libraries(LexTests
12  clangAST
13  clangBasic
14  clangLex
15  clangParse
16  clangSema
17  )
18