| 1 | set(LLVM_LINK_COMPONENTS |
|---|---|
| 2 | Support |
| 3 | ) |
| 4 | |
| 5 | add_clang_unittest(FrontendTests |
| 6 | ASTUnitTest.cpp |
| 7 | CompilerInstanceTest.cpp |
| 8 | FixedPointString.cpp |
| 9 | FrontendActionTest.cpp |
| 10 | CodeGenActionTest.cpp |
| 11 | ParsedSourceLocationTest.cpp |
| 12 | PCHPreambleTest.cpp |
| 13 | OutputStreamTest.cpp |
| 14 | ) |
| 15 | target_link_libraries(FrontendTests |
| 16 | PRIVATE |
| 17 | clangAST |
| 18 | clangBasic |
| 19 | clangFrontend |
| 20 | clangLex |
| 21 | clangSema |
| 22 | clangCodeGen |
| 23 | clangFrontendTool |
| 24 | clangSerialization |
| 25 | ) |
| 26 |