ddavis2speedray / googletest

Automatically exported from code.google.com/p/googletest
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

should move src/gtest-internal-inl.h to include/gtest/internal/ #275

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
src/gtest-internal-inl.h is the only gtest header not in the include/gtest/
directory.  This complicated the build scripts, as we need to add both
$(GTEST_SRC) and $(GTEST_SRC)/include to the header search path.

Since we don't support installing gtest now, there isn't much point in
putting the header in src/.  We should move it to include/gtest/internal/
to simplify our build scripts and the build instructions we send the users.

Original issue reported on code.google.com by w...@google.com on 12 Apr 2010 at 6:27

GoogleCodeExporter commented 9 years ago
I realized that src/gtest-all.cc needs to find other .cc files, so $(GTEST_SRC) 
will
have to be in the header search path anyway. :-(

Original comment by w...@google.com on 12 Apr 2010 at 8:41