CMakeLists.txt 445 B

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