I need to generate both generic and grpc services from a proto file, say
- set option
cc_generic_services
to true on Linux, and use a non-grpc implementation, and - set option
cc_generic_services
to false on Windows, to use grpc services.
Is there any way to set the option from the command line to use one proto file.
I use cmake to manage the project files.
Thanks.