aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/compiler/command_line_interface.h
diff options
context:
space:
mode:
authorGravatar Bo Yang <paulyang1211@gmail.com>2015-02-03 21:35:50 -0800
committerGravatar Bo Yang <paulyang1211@gmail.com>2015-02-03 21:35:50 -0800
commit5914ce7a160a82db1490e99c45c95c69417b20ea (patch)
treefdd9219543de9caf2490a1bcc10ef62ffe27d254 /src/google/protobuf/compiler/command_line_interface.h
parent532c94145b6605361513682601f1d8e9f97a2497 (diff)
Implement a feature to generate a dependency file. By giving protoc the flag
"--dependency_manifest_out=FILE", protoc will write dependencies of input proto files into FILE. In FILE, the format will be <full path to FILE>: <full path to 1st proto>\\\n <full path to 2nd proto> ... This cl is based on https://github.com/google/protobuf/pull/178
Diffstat (limited to 'src/google/protobuf/compiler/command_line_interface.h')
-rw-r--r--src/google/protobuf/compiler/command_line_interface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google/protobuf/compiler/command_line_interface.h b/src/google/protobuf/compiler/command_line_interface.h
index 59d57fbf..1b657f5e 100644
--- a/src/google/protobuf/compiler/command_line_interface.h
+++ b/src/google/protobuf/compiler/command_line_interface.h
@@ -360,7 +360,7 @@ class LIBPROTOC_EXPORT CommandLineInterface {
// If --manifest_file was given, this is the filename to which the input
// file should be written. Otherwise, empty.
- string manifest_name_;
+ string dependency_manifest_name_;
// True if --include_imports was given, meaning that we should
// write all transitive dependencies to the DescriptorSet. Otherwise, only