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}
13 add_clang_unittest(ClangReplInterpreterExceptionTests
14 InterpreterExceptionTest.cpp
19 llvm_update_compile_flags(ClangReplInterpreterExceptionTests)
20 target_link_libraries(ClangReplInterpreterExceptionTests PUBLIC
26 add_dependencies(ClangReplInterpreterExceptionTests clang-resource-headers)