google/google-toolbox-for-mac

Include path to gtest.h in GTMGoogleTestRunner.mm

hiroyuki-komatsu opened this issue · 1 comments

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!

Go ahead with a patch for the second one, since I believe that's what the repo is called these days.