Google has deprecated using SVN. Move over to GitHub

This commit is contained in:
David Chen 2016-03-17 17:25:22 -07:00
parent a8ab4afe5b
commit 7112938a28
2 changed files with 5 additions and 5 deletions

View File

@ -119,11 +119,11 @@ PROCESSING_INCLUDES += \
-I$(SRC_PATH)codec/processing/src/vaacalc
GTEST_INCLUDES += \
-I$(SRC_PATH)gtest \
-I$(SRC_PATH)gtest/include
-I$(SRC_PATH)gtest/googletest \
-I$(SRC_PATH)gtest/googletest/include
CODEC_UNITTEST_INCLUDES += \
-I$(SRC_PATH)gtest/include \
-I$(SRC_PATH)gtest/googletest/include \
-I$(SRC_PATH)codec/common/inc \
-I$(SRC_PATH)test
@ -172,7 +172,7 @@ gmp-bootstrap:
cd gmp-api && git fetch origin && git checkout $(GMP_API_BRANCH)
gtest-bootstrap:
svn co https://googletest.googlecode.com/svn/trunk/ gtest
git clone https://github.com/google/googletest.git gtest
ifeq ($(HAVE_GTEST),Yes)

View File

@ -1,4 +1,4 @@
GTEST_SRCDIR=gtest
GTEST_SRCDIR=gtest/googletest
GTEST_CPP_SRCS=\
$(GTEST_SRCDIR)/src/gtest-all.cc\