Skip to content

Commit

Permalink
address comments; get quickstart builds working
Browse files Browse the repository at this point in the history
  • Loading branch information
scotthart committed Dec 10, 2024
1 parent 62b91b5 commit 13059dd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions ci/cloudbuild/builds/quickstart-cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ readonly SED_ARGS=(
# The vcpkg maintainers introduced an `rpc` feature to just compile
# `grpc-common`.
-e '/^rpc$/d'
# TODO(#14891) - skip until next release
-e '/^bigquerycontrol/d'
)
mapfile -t features < <(
env -C "${vcpkg_dir}" ./vcpkg search google-cloud-cpp |
Expand Down
4 changes: 1 addition & 3 deletions google/cloud/bigquerycontrol/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# BigQuery API C++ Client Library

:construction:

This directory contains an idiomatic C++ client library for the
[BigQuery API][cloud-service-docs].

A data platform for customers to create, manage, share and query data.

While this library is **GA**, please note Google Cloud C++ client libraries do
**not** follow [Semantic Versioning](https://semver.org/).
**not** follow [Semantic Versioning](https://semver.org/).

## Quickstart

Expand Down
5 changes: 5 additions & 0 deletions google/cloud/bigquerycontrol/config.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,8 @@ find_dependency(google_cloud_cpp_rest_protobuf_internal)
find_dependency(absl)

include("${CMAKE_CURRENT_LIST_DIR}/google_cloud_cpp_bigquerycontrol-targets.cmake")

# Remove this after bigquerycontrol is promoted from transitional to GA.
if (NOT TARGET google-cloud-cpp::experimental-bigquerycontrol)
add_library(google-cloud-cpp::experimental-bigquerycontrol ALIAS google-cloud-cpp::bigquerycontrol)
endif ()

0 comments on commit 13059dd

Please sign in to comment.