Skip to content
This repository was archived by the owner on Dec 22, 2021. It is now read-only.

Commit 1e638c6

Browse files
committed
Addressed review comments.
1 parent 6299140 commit 1e638c6

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

CMakeLists.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ ExternalProject_Add(
6464
"${GOOGLEAPIS_CPP_SOURCE}/google/api/client.proto"
6565
"${GOOGLEAPIS_CPP_SOURCE}/google/api/resource.proto"
6666
"${GOOGLEAPIS_CPP_SOURCE}/google/devtools/cloudtrace/v2/trace.proto"
67+
"${GOOGLEAPIS_CPP_SOURCE}/google/devtools/cloudtrace/v2/tracing.proto"
6768
"${GOOGLEAPIS_CPP_SOURCE}/google/type/expr.proto"
6869
"${GOOGLEAPIS_CPP_SOURCE}/google/rpc/error_details.proto"
6970
"${GOOGLEAPIS_CPP_SOURCE}/google/rpc/status.proto"
@@ -293,6 +294,19 @@ target_link_libraries(googleapis_cpp_devtools_cloudtrace_v2_trace_protos
293294
googleapis-c++::rpc_status_protos
294295
PRIVATE googleapis_cpp_common_flags)
295296

297+
google_cloud_cpp_grpcpp_library(
298+
googleapis_cpp_devtools_cloudtrace_v2_tracing_protos
299+
"${GOOGLEAPIS_CPP_SOURCE}/google/devtools/cloudtrace/v2/tracing.proto"
300+
PROTO_PATH_DIRECTORIES
301+
"${GOOGLEAPIS_CPP_SOURCE}"
302+
"${PROTO_INCLUDE_DIR}")
303+
googleapis_cpp_set_version_and_alias(devtools_cloudtrace_v2_tracing_protos)
304+
target_link_libraries(googleapis_cpp_devtools_cloudtrace_v2_tracing_protos
305+
PUBLIC googleapis-c++::devtools_cloudtrace_v2_trace_protos
306+
googleapis-c++::api_annotations_protos
307+
googleapis-c++::rpc_status_protos
308+
PRIVATE googleapis_cpp_common_flags)
309+
296310
# Install the libraries and headers in the locations determined by
297311
# GNUInstallDirs
298312
include(GNUInstallDirs)
@@ -306,6 +320,7 @@ set(googleapis_cpp_installed_libraries_list
306320
googleapis_cpp_api_auth_protos
307321
googleapis_cpp_api_resource_protos
308322
googleapis_cpp_devtools_cloudtrace_v2_trace_protos
323+
googleapis_cpp_devtools_cloudtrace_v2_tracing_protos
309324
googleapis_cpp_iam_v1_policy_protos
310325
googleapis_cpp_iam_v1_iam_policy_protos
311326
googleapis_cpp_rpc_error_details_protos

cmake/config.cmake.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ foreach (_target
2727
api_resource
2828
bigtable
2929
devtools_cloudtrace_v2_trace
30+
devtools_cloudtrace_v2_tracing
3031
iam_v1_iam_policy
3132
iam_v1_policy
3233
longrunning_operations

0 commit comments

Comments
 (0)