[clang-repl] Fix ClangReplInterpreterTests unittest dependency.

This commit is contained in:
Vassil Vassilev 2021-05-13 10:31:59 +00:00
parent 0326d4667a
commit 4624412367

View file

@ -1,4 +1,5 @@
set(LLVM_LINK_COMPONENTS set(LLVM_LINK_COMPONENTS
Core
) )
add_clang_unittest(ClangReplInterpreterTests add_clang_unittest(ClangReplInterpreterTests
@ -6,6 +7,8 @@ add_clang_unittest(ClangReplInterpreterTests
InterpreterTest.cpp InterpreterTest.cpp
) )
target_link_libraries(ClangReplInterpreterTests PUBLIC target_link_libraries(ClangReplInterpreterTests PUBLIC
clangAST
clangBasic
clangInterpreter clangInterpreter
clangFrontend clangFrontend
) )