aboutsummaryrefslogtreecommitdiff
path: root/COMPILING.md
diff options
context:
space:
mode:
authorCarl Mastrangelo <notcarl@google.com>2017-08-25 11:25:36 -0700
committerGitHub <noreply@github.com>2017-08-25 11:25:36 -0700
commit24ff2748b7f671e6d23e0aea9362c345dc84e4ab (patch)
treea3b72974551b7d300938579d93fc5f2edcf86734 /COMPILING.md
parenta53d030b5ca07fadd3dc22e9b83d15b01ab9495f (diff)
downloadgrpc-grpc-java-24ff2748b7f671e6d23e0aea9362c345dc84e4ab.tar.gz
all: update to proto 3.4.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 1346516e5..40d21b1e6 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.3.1
+$ git checkout v3.4.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.3.1\src ^
- -PvcProtobufLibs=C:\path\to\protobuf-3.3.1\vsprojects\Release ^
+ -PvcProtobufInclude=C:\path\to\protobuf-3.4.0\src ^
+ -PvcProtobufLibs=C:\path\to\protobuf-3.4.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.3.1\\src
-vcProtobufLibs=C:\\path\\to\\protobuf-3.3.1\\vsprojects\\Release
+vcProtobufInclude=C:\\path\\to\\protobuf-3.4.0\\src
+vcProtobufLibs=C:\\path\\to\\protobuf-3.4.0\\vsprojects\\Release
targetArch=x86_32
```