parent
4246672186
commit
49f2388bf3
3 changed files with 36 additions and 4 deletions
@ -0,0 +1,18 @@ |
||||
// Protocol Buffers - Google's data interchange format
|
||||
// Copyright 2008 Google Inc. All rights reserved.
|
||||
//
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file or at
|
||||
// https://developers.google.com/open-source/licenses/bsd
|
||||
|
||||
#include "google/protobuf/compiler/cpp/generator.h" |
||||
#include "google/protobuf/compiler/plugin.h" |
||||
|
||||
int main(int argc, char *argv[]) { |
||||
::google::protobuf::compiler::cpp::CppGenerator generator; |
||||
#ifdef GOOGLE_PROTOBUF_RUNTIME_INCLUDE_BASE |
||||
generator.set_opensource_runtime(true); |
||||
generator.set_runtime_include_base(GOOGLE_PROTOBUF_RUNTIME_INCLUDE_BASE); |
||||
#endif |
||||
return ::google::protobuf::compiler::PluginMain(argc, argv, &generator); |
||||
} |
Loading…
Reference in new issue