diff options
author | Carlos O'Ryan <coryan@google.com> | 2019-09-09T21·14-0400 |
---|---|---|
committer | Carlos O'Ryan <coryan@google.com> | 2019-09-09T21·14-0400 |
commit | d39abd950f7f4ee3013b0f4180902e20e31721db (patch) | |
tree | ec1e47425eec7cfee1680af53799c51fd9e9e392 /CMakeLists.txt | |
parent | d496568000e98f166822d747bc2fc9cb96a3f571 (diff) |
Address review comments.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c17806cc9a04..6163a103d44e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -137,6 +137,10 @@ function (googleapis_cpp_short_name var proto) set("${var}" "${short_name}" PARENT_SCOPE) endfunction () +# Create a single source proto library. +# +# - proto: the filename for the proto source. +# - (optional) ARGN: proto libraries the new library depends on. function (googleapis_cpp_add_library proto) googleapis_cpp_short_name(short_name "${proto}") google_cloud_cpp_grpcpp_library(googleapis_cpp_${short_name} |