xref: /aosp_15_r20/external/clang/unittests/Frontend/CMakeLists.txt (revision 67e74705e28f6214e480b399dd47ea732279e315)
1set(LLVM_LINK_COMPONENTS
2  Support
3  )
4
5add_clang_unittest(FrontendTests
6  FrontendActionTest.cpp
7  CodeGenActionTest.cpp
8  )
9target_link_libraries(FrontendTests
10  clangAST
11  clangBasic
12  clangFrontend
13  clangLex
14  clangSema
15  clangCodeGen
16  )
17