18 lines
476 B
C++
Raw Permalink Normal View History

#include <google/protobuf/compiler/command_line_interface.h>
2013-11-16 17:11:48 -05:00
#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.");
// Add version info generated by automake
cli.SetVersionInfo(PACKAGE_STRING);
return cli.Run(argc, argv);
}