aboutsummaryrefslogtreecommitdiff
path: root/COMPILING.md
diff options
context:
space:
mode:
authorCarl Mastrangelo <notcarl@google.com>2017-02-07 09:47:15 -0800
committerGitHub <noreply@github.com>2017-02-07 09:47:15 -0800
commitb0323ac22c405954e1e463a0d1a0d73f2a2216ba (patch)
treed42784726f83cc10c64cab307cb0760ffdaff86d /COMPILING.md
parent50a42786713ef0007b0958eec9231050c43bbef5 (diff)
downloadgrpc-grpc-java-b0323ac22c405954e1e463a0d1a0d73f2a2216ba.tar.gz
all: update to protobuf 3.2.0
Diffstat (limited to 'COMPILING.md')
-rw-r--r--COMPILING.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/COMPILING.md b/COMPILING.md
index a197b68a5..03b807be2 100644
--- a/COMPILING.md
+++ b/COMPILING.md
@@ -33,7 +33,7 @@ For Linux, Mac and MinGW:
```
$ git clone https://github.com/google/protobuf.git
$ cd protobuf
-$ git checkout v3.1.0
+$ git checkout v3.2.0
$ ./autogen.sh
$ ./configure
$ make
@@ -72,16 +72,16 @@ When building on Windows and VC++, you need to specify project properties for
Gradle to find protobuf:
```
.\gradlew install ^
- -PvcProtobufInclude=C:\path\to\protobuf-3.1.0\src ^
- -PvcProtobufLibs=C:\path\to\protobuf-3.1.0\vsprojects\Release ^
+ -PvcProtobufInclude=C:\path\to\protobuf-3.2.0\src ^
+ -PvcProtobufLibs=C:\path\to\protobuf-3.2.0\vsprojects\Release ^
-PtargetArch=x86_32
```
Since specifying those properties every build is bothersome, you can instead
create ``<project-root>\gradle.properties`` with contents like:
```
-vcProtobufInclude=C:\\path\\to\\protobuf-3.1.0\\src
-vcProtobufLibs=C:\\path\\to\\protobuf-3.1.0\\vsprojects\\Release
+vcProtobufInclude=C:\\path\\to\\protobuf-3.2.0\\src
+vcProtobufLibs=C:\\path\\to\\protobuf-3.2.0\\vsprojects\\Release
targetArch=x86_32
```