Fix build for r369374

This patch added some gtest code to the TestingSupport library. As this
is not a unit test, but a unit test library, gtest does not get added to
the include path automatically, but we have to do that ourselves. (It
was working for me without this because the compiler picked up the
system gtest instead.)

llvm-svn: 369381
This commit is contained in:
Pavel Labath 2019-08-20 13:17:20 +00:00
parent dee011b7f4
commit 028fe5af60
1 changed files with 1 additions and 0 deletions

View File

@ -10,3 +10,4 @@ add_lldb_library(lldbUtilityHelpers
Support
ObjectYAML
)
include_directories(${LLVM_MAIN_SRC_DIR}/utils/unittest/googletest/include)