Revert "[lldb][test] Remove compiler version check and use regex" (#124101)
[llvm-project.git] / clang / unittests / Interpreter / ExceptionTests / CMakeLists.txt
blob24ae9cd78b5ca28e20c26cd92509744d118bfd7e
1 # The interpreter can throw an exception from user input. The test binary needs
2 # to be compiled with exception support to catch the thrown exception.
3 set(LLVM_REQUIRES_EH ON)
4 set(LLVM_REQUIRES_RTTI ON)
6 set(LLVM_LINK_COMPONENTS
7   ${LLVM_TARGETS_TO_BUILD}
8   Core
9   OrcJIT
10   Support
11   )
13 add_clang_unittest(ClangReplInterpreterExceptionTests
14   InterpreterExceptionTest.cpp
16   EXPORT_SYMBOLS
17   )
19 llvm_update_compile_flags(ClangReplInterpreterExceptionTests)
20 target_link_libraries(ClangReplInterpreterExceptionTests PUBLIC
21   clangAST
22   clangBasic
23   clangInterpreter
24   clangFrontend
25   )
26 add_dependencies(ClangReplInterpreterExceptionTests clang-resource-headers)