diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2022-03-17 09:44:37 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2022-03-18 12:15:02 +0100 |
commit | 2f0b97725770ca74cd96b04b7b95bd49a9069bfa (patch) | |
tree | 72c5b01e66d3fe213ccbf0755a976eb0d6377a2d | |
parent | 72dc96845dab5a0a3b4eb4b45e762b9b2db57f22 (diff) | |
download | rules-cc-2f0b97725770ca74cd96b04b7b95bd49a9069bfa.tar.gz |
Add documentation for the "proto" fields in the CC rules
-rw-r--r-- | CC/RULES | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -203,6 +203,13 @@ , "link external": ["Additional linker flags for linking external libraries."] , "deps": ["Any other libraries this library depends upon."] + , "proto": + [ "Any [\"proto\", \"library\"] this target depends upon directly." + , "The creation of C++ bindings for this proto library as well as of" + , "is dependencies will be taken care of (as anonymous targets, so no" + , "duplicate work will be carried out, even if the same proto library" + , "is used at various places)." + ] } , "config_doc": { "CXX": ["The name of the C++ compiler to be used."] @@ -346,6 +353,13 @@ , "link external": ["Additional linker flags for linking external libraries."] , "deps": ["Any other libraries this binary depends upon."] + , "proto": + [ "Any [\"proto\", \"library\"] this target depends upon directly." + , "The creation of C++ bindings for this proto library as well as of" + , "is dependencies will be taken care of (as anonymous targets, so no" + , "duplicate work will be carried out, even if the same proto library" + , "is used at various places)." + ] } , "config_doc": { "CXX": ["The name of the C++ compiler to be used."] |