xref: /llvm-project/clang/unittests/Lex/CMakeLists.txt (revision 23459f13fcd9c424a41debb2d11eb56843d4e679)
1set(LLVM_LINK_COMPONENTS
2  Support
3  )
4
5add_clang_unittest(LexTests
6  DependencyDirectivesScannerTest.cpp
7  HeaderMapTest.cpp
8  HeaderSearchTest.cpp
9  LexerTest.cpp
10  ModuleDeclStateTest.cpp
11  PPCallbacksTest.cpp
12  PPConditionalDirectiveRecordTest.cpp
13  PPDependencyDirectivesTest.cpp
14  PPMemoryAllocationsTest.cpp
15  )
16
17clang_target_link_libraries(LexTests
18  PRIVATE
19  clangAST
20  clangBasic
21  clangLex
22  clangParse
23  clangSema
24  )
25
26target_link_libraries(LexTests
27  PRIVATE
28  LLVMTestingAnnotations
29  LLVMTestingSupport
30  )
31