xref: /llvm-project/clang/unittests/Frontend/CMakeLists.txt (revision 62e4c22c95a9c5fbbebded43388006d5fed3b613)
1set(LLVM_LINK_COMPONENTS
2  Support
3  TargetParser
4  )
5
6add_clang_unittest(FrontendTests
7  ASTUnitTest.cpp
8  CompilerInvocationTest.cpp
9  CompilerInstanceTest.cpp
10  FixedPointString.cpp
11  FrontendActionTest.cpp
12  CodeGenActionTest.cpp
13  ParsedSourceLocationTest.cpp
14  PCHPreambleTest.cpp
15  ReparseWorkingDirTest.cpp
16  OutputStreamTest.cpp
17  TextDiagnosticTest.cpp
18  UtilsTest.cpp
19  )
20clang_target_link_libraries(FrontendTests
21  PRIVATE
22  clangAST
23  clangBasic
24  clangFrontend
25  clangLex
26  clangSema
27  clangCodeGen
28  clangFrontendTool
29  clangSerialization
30  )
31