UnitTesting/GTMGoogleTestRunner.mm has the following code to include gtest.h.
#include "third_party/gtest/include/gtest/gtest.h"
However, the actual path is (third_party/googletest/)googletest/include/gtest/gtest.h.
Would you change the include path to either of the following paths?
#include "third_party/gtest/googletest/include/gtest/gtest.h"
or
#include "third_party/googletest/googletest/include/gtest/gtest.h"
FYI. google/mozc is the project that needs this change.
https://github.com/google/mozc/blob/master/src/WORKSPACE.bazel#L142
Thank you!
UnitTesting/GTMGoogleTestRunner.mm has the following code to include
gtest.h.However, the actual path is
(third_party/googletest/)googletest/include/gtest/gtest.h.Would you change the include path to either of the following paths?
or
FYI. google/mozc is the project that needs this change.
https://github.com/google/mozc/blob/master/src/WORKSPACE.bazel#L142
Thank you!