Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / unittests / Interpreter / CMakeLists.txt
blob712641afb976dd4f4d780ade824c69254960341f
1 set(LLVM_LINK_COMPONENTS
2   ${LLVM_TARGETS_TO_BUILD}
3   Core
4   OrcJIT
5   Support
6   TargetParser
7   )
9 add_clang_unittest(ClangReplInterpreterTests
10   IncrementalProcessingTest.cpp
11   InterpreterTest.cpp
12   CodeCompletionTest.cpp
13   )
14 target_link_libraries(ClangReplInterpreterTests PUBLIC
15   clangAST
16   clangBasic
17   clangInterpreter
18   clangFrontend
19   clangSema
20   )
22 # Exceptions on Windows are not yet supported.
23 if(NOT WIN32)
24   add_subdirectory(ExceptionTests)
25 endif()
27 export_executable_symbols(ClangReplInterpreterTests)