mirror of
https://github.com/protobuf-c/protobuf-c.git
synced 2024-12-28 14:48:18 +08:00
15 lines
393 B
C++
15 lines
393 B
C++
#include <google/protobuf/compiler/command_line_interface.h>
|
|
#include <protoc-c/c_generator.h>
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
|
google::protobuf::compiler::CommandLineInterface cli;
|
|
|
|
// Support generation of Foo code.
|
|
google::protobuf::compiler::c::CGenerator c_generator;
|
|
cli.RegisterGenerator("--c_out", &c_generator,
|
|
"Generate C/H files.");
|
|
|
|
return cli.Run(argc, argv);
|
|
}
|