aboutsummaryrefslogtreecommitdiffhomepage
path: root/objectivec
diff options
context:
space:
mode:
authorGravatar Thomas Van Lenten <thomasvl@google.com>2018-02-07 10:39:13 -0500
committerGravatar Thomas Van Lenten <thomasvl@google.com>2018-02-07 10:41:21 -0500
commit07f023188e929019f506e9b390dde70539ea857f (patch)
tree61ff842cfdf1792f6f19a9d85f2fa66955ac218a /objectivec
parent82e02316072f38f994395b1620cda2aff927dd0f (diff)
Fix up the docs to mention the WKTs generated files also.
Fixes #4277
Diffstat (limited to 'objectivec')
-rw-r--r--objectivec/README.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/objectivec/README.md b/objectivec/README.md
index 7226f0b9..469a61fb 100644
--- a/objectivec/README.md
+++ b/objectivec/README.md
@@ -33,19 +33,21 @@ Building
There are two ways to include the Runtime sources in your project:
-Add `objectivec/\*.h` & `objectivec/GPBProtocolBuffers.m` to your project.
+Add `objectivec/*.h`, `objectivec/google/protobuf/*.pbobjc.h`, and
+`objectivec/GPBProtocolBuffers.m` to your project.
*or*
-Add `objectivec/\*.h` & `objectivec/\*.m` except for
+Add `objectivec/*.h`, `objectivec/google/protobuf/*.pbobjc.h`,
+`objectivec/google/protobuf/*.pbobjc.m`, and `objectivec/*.m` except for
`objectivec/GPBProtocolBuffers.m` to your project.
If the target is using ARC, remember to turn off ARC (`-fno-objc-arc`) for the
`.m` files.
-The files generated by `protoc` for the `*.proto` files (`\*.pbobjc.h` and
-`\*.pbobjc.m`) are then also added to the target.
+The files generated by `protoc` for the `*.proto` files (`*.pbobjc.h` and
+`*.pbobjc.m`) are then also added to the target.
Usage
-----