Merge pull request #16 from coryan/add-cloudtrace-v2-trace-library
feat: Add library for cloudtrace/v2/trace.proto.
This commit is contained in:
commit
7420d536ea
2 changed files with 31 additions and 0 deletions
|
@ -63,6 +63,8 @@ ExternalProject_Add(
|
||||||
"${GOOGLEAPIS_CPP_SOURCE}/google/api/auth.proto"
|
"${GOOGLEAPIS_CPP_SOURCE}/google/api/auth.proto"
|
||||||
"${GOOGLEAPIS_CPP_SOURCE}/google/api/client.proto"
|
"${GOOGLEAPIS_CPP_SOURCE}/google/api/client.proto"
|
||||||
"${GOOGLEAPIS_CPP_SOURCE}/google/api/resource.proto"
|
"${GOOGLEAPIS_CPP_SOURCE}/google/api/resource.proto"
|
||||||
|
"${GOOGLEAPIS_CPP_SOURCE}/google/devtools/cloudtrace/v2/trace.proto"
|
||||||
|
"${GOOGLEAPIS_CPP_SOURCE}/google/devtools/cloudtrace/v2/tracing.proto"
|
||||||
"${GOOGLEAPIS_CPP_SOURCE}/google/type/expr.proto"
|
"${GOOGLEAPIS_CPP_SOURCE}/google/type/expr.proto"
|
||||||
"${GOOGLEAPIS_CPP_SOURCE}/google/rpc/error_details.proto"
|
"${GOOGLEAPIS_CPP_SOURCE}/google/rpc/error_details.proto"
|
||||||
"${GOOGLEAPIS_CPP_SOURCE}/google/rpc/status.proto"
|
"${GOOGLEAPIS_CPP_SOURCE}/google/rpc/status.proto"
|
||||||
|
@ -280,6 +282,31 @@ target_link_libraries(googleapis_cpp_spanner_protos
|
||||||
googleapis-c++::iam_v1_iam_policy_protos
|
googleapis-c++::iam_v1_iam_policy_protos
|
||||||
PRIVATE googleapis_cpp_common_flags)
|
PRIVATE googleapis_cpp_common_flags)
|
||||||
|
|
||||||
|
google_cloud_cpp_grpcpp_library(
|
||||||
|
googleapis_cpp_devtools_cloudtrace_v2_trace_protos
|
||||||
|
"${GOOGLEAPIS_CPP_SOURCE}/google/devtools/cloudtrace/v2/trace.proto"
|
||||||
|
PROTO_PATH_DIRECTORIES
|
||||||
|
"${GOOGLEAPIS_CPP_SOURCE}"
|
||||||
|
"${PROTO_INCLUDE_DIR}")
|
||||||
|
googleapis_cpp_set_version_and_alias(devtools_cloudtrace_v2_trace_protos)
|
||||||
|
target_link_libraries(googleapis_cpp_devtools_cloudtrace_v2_trace_protos
|
||||||
|
PUBLIC googleapis-c++::api_annotations_protos
|
||||||
|
googleapis-c++::rpc_status_protos
|
||||||
|
PRIVATE googleapis_cpp_common_flags)
|
||||||
|
|
||||||
|
google_cloud_cpp_grpcpp_library(
|
||||||
|
googleapis_cpp_devtools_cloudtrace_v2_tracing_protos
|
||||||
|
"${GOOGLEAPIS_CPP_SOURCE}/google/devtools/cloudtrace/v2/tracing.proto"
|
||||||
|
PROTO_PATH_DIRECTORIES
|
||||||
|
"${GOOGLEAPIS_CPP_SOURCE}"
|
||||||
|
"${PROTO_INCLUDE_DIR}")
|
||||||
|
googleapis_cpp_set_version_and_alias(devtools_cloudtrace_v2_tracing_protos)
|
||||||
|
target_link_libraries(googleapis_cpp_devtools_cloudtrace_v2_tracing_protos
|
||||||
|
PUBLIC googleapis-c++::devtools_cloudtrace_v2_trace_protos
|
||||||
|
googleapis-c++::api_annotations_protos
|
||||||
|
googleapis-c++::rpc_status_protos
|
||||||
|
PRIVATE googleapis_cpp_common_flags)
|
||||||
|
|
||||||
# Install the libraries and headers in the locations determined by
|
# Install the libraries and headers in the locations determined by
|
||||||
# GNUInstallDirs
|
# GNUInstallDirs
|
||||||
include(GNUInstallDirs)
|
include(GNUInstallDirs)
|
||||||
|
@ -292,6 +319,8 @@ set(googleapis_cpp_installed_libraries_list
|
||||||
googleapis_cpp_api_annotations_protos
|
googleapis_cpp_api_annotations_protos
|
||||||
googleapis_cpp_api_auth_protos
|
googleapis_cpp_api_auth_protos
|
||||||
googleapis_cpp_api_resource_protos
|
googleapis_cpp_api_resource_protos
|
||||||
|
googleapis_cpp_devtools_cloudtrace_v2_trace_protos
|
||||||
|
googleapis_cpp_devtools_cloudtrace_v2_tracing_protos
|
||||||
googleapis_cpp_iam_v1_policy_protos
|
googleapis_cpp_iam_v1_policy_protos
|
||||||
googleapis_cpp_iam_v1_iam_policy_protos
|
googleapis_cpp_iam_v1_iam_policy_protos
|
||||||
googleapis_cpp_rpc_error_details_protos
|
googleapis_cpp_rpc_error_details_protos
|
||||||
|
|
|
@ -26,6 +26,8 @@ foreach (_target
|
||||||
api_http
|
api_http
|
||||||
api_resource
|
api_resource
|
||||||
bigtable
|
bigtable
|
||||||
|
devtools_cloudtrace_v2_trace
|
||||||
|
devtools_cloudtrace_v2_tracing
|
||||||
iam_v1_iam_policy
|
iam_v1_iam_policy
|
||||||
iam_v1_policy
|
iam_v1_policy
|
||||||
longrunning_operations
|
longrunning_operations
|
||||||
|
|
Loading…
Reference in a new issue