Skip to content

Commit

Permalink
doc: update quickstart Makefiles (#7159)
Browse files Browse the repository at this point in the history
Use the newer `google_cloud_cpp_*` package names.
  • Loading branch information
coryan authored Aug 11, 2021
1 parent 60f9afc commit 1c3fedd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion google/cloud/bigtable/quickstart/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ all: $(BIN)/quickstart

# Configuration variables to compile and link against the Cloud Bigtable C++
# client library.
CBT_DEPS := bigtable_client
CBT_DEPS := google_cloud_cpp_bigtable
CBT_CXXFLAGS := $(shell pkg-config $(CBT_DEPS) --cflags)
CBT_CXXLDFLAGS := $(shell pkg-config $(CBT_DEPS) --libs-only-L)
CBT_LIBS := $(shell pkg-config $(CBT_DEPS) --libs-only-l)
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/pubsub/quickstart/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ all: $(BIN)/quickstart

# Configuration variables to compile and link against the Cloud Pub/Sub C++
# client library.
PUBSUB_DEPS := pubsub_client
PUBSUB_DEPS := google_cloud_cpp_pubsub
PUBSUB_CXXFLAGS := $(shell pkg-config $(PUBSUB_DEPS) --cflags)
PUBSUB_CXXLDFLAGS := $(shell pkg-config $(PUBSUB_DEPS) --libs-only-L)
PUBSUB_LIBS := $(shell pkg-config $(PUBSUB_DEPS) --libs-only-l)
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/spanner/quickstart/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ all: $(BIN)/quickstart

# Configuration variables to compile and link against the Cloud Spanner C++
# client library.
SPANNER_DEPS := spanner_client
SPANNER_DEPS := google_cloud_cpp_spanner
SPANNER_CXXFLAGS := $(shell pkg-config $(SPANNER_DEPS) --cflags)
SPANNER_CXXLDFLAGS := $(shell pkg-config $(SPANNER_DEPS) --libs-only-L)
SPANNER_LIBS := $(shell pkg-config $(SPANNER_DEPS) --libs-only-l)
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/storage/quickstart/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ all: $(BIN)/quickstart

# Configuration variables to compile and link against the Google Cloud Storage
# C++ client library.
GCS_DEPS := storage_client
GCS_DEPS := google_cloud_cpp_storage
GCS_CXXFLAGS := $(shell pkg-config $(GCS_DEPS) --cflags)
GCS_CXXLDFLAGS := $(shell pkg-config $(GCS_DEPS) --libs-only-L)
GCS_LIBS := $(shell pkg-config $(GCS_DEPS) --libs-only-l)
Expand Down

0 comments on commit 1c3fedd

Please sign in to comment.