On Mon, Feb 22, 2016 at 3:28 PM, pcman312 <[email protected]> wrote:
> Are there any good languages (with compilers) that let's you specify the > data within a proto rather than the proto itself? I want to create files > with configuration data in them, but they need to be compiled into proto > format. I know Google has GCL, but as far as I can tell that isn't > available in open source form, so I'm looking for an alternative. Ideally > I'd like to be able to write a file that has the configuration data, then > have it automatically compiled into a binary proto file as a part of my > build process. > You can write the configuration file in protobuf text format and then convert them to proto binary format using the protocol compiler in the build process. > You received this message because you are subscribed to the Google Groups > "Protocol Buffers" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/protobuf. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/protobuf. For more options, visit https://groups.google.com/d/optout.
