i wrote an .options file and placed it in the same directory as the .proto file. then, I tried to compile it (using nanopb compiler) by using the command
generator-bin/protoc --nanopb_out=. message.proto -s message.options
and got this error:
Unknown flag: -s
so what am I doing wrong? do I need to import my options file in the .proto file? is there anything else I should do to make it work?