summaryrefslogtreecommitdiff
path: root/unittests/Frontend/CMakeLists.txt
blob: 4312151c0457d1a0a57c695fc76d77927bca493c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
set(LLVM_LINK_COMPONENTS
  Support
  )

add_clang_unittest(FrontendTests
  ASTUnitTest.cpp
  FrontendActionTest.cpp
  CodeGenActionTest.cpp
  )
target_link_libraries(FrontendTests
  clangAST
  clangBasic
  clangFrontend
  clangLex
  clangSema
  clangCodeGen
  )