I need to compile protocol buffer .proto files to .pb.cc,.pb.h files. There is a program for this conversion.
protoc test.proto --cpp_out .
How can I add such a generic rule in cmake? I can do this with add_custom_command. But I have to this for every .proto file. Is there a better way to do this?