Home | History | Annotate | Download | only in Frontend
      1 set(LLVM_LINK_COMPONENTS
      2   Support
      3   )
      4 
      5 add_clang_unittest(FrontendTests
      6   FrontendActionTest.cpp
      7   CodeGenActionTest.cpp
      8   )
      9 target_link_libraries(FrontendTests
     10   clangAST
     11   clangBasic
     12   clangFrontend
     13   clangLex
     14   clangSema
     15   clangCodeGen
     16   )
     17