Clang Project

clang_source_code/unittests/Lex/CMakeLists.txt
1set(LLVM_LINK_COMPONENTS
2  Support
3  )
4
5add_clang_unittest(LexTests
6  HeaderMapTest.cpp
7  HeaderSearchTest.cpp
8  LexerTest.cpp
9  PPCallbacksTest.cpp
10  PPConditionalDirectiveRecordTest.cpp
11  )
12
13target_link_libraries(LexTests
14  PRIVATE
15  clangAST
16  clangBasic
17  clangLex
18  clangParse
19  clangSema
20  )
21