forked from googleapis/google-cloud-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
598 lines (573 loc) · 21.1 KB
/
CMakeLists.txt
File metadata and controls
598 lines (573 loc) · 21.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
# ~~~
# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ~~~
include(GoogleapisConfig)
set(DOXYGEN_PROJECT_NAME "Google Cloud Bigtable C++ Client")
set(DOXYGEN_PROJECT_BRIEF "A C++ Client Library for Google Cloud Bigtable")
set(DOXYGEN_PROJECT_NUMBER "${PROJECT_VERSION}")
set(DOXYGEN_EXAMPLE_PATH
"${CMAKE_CURRENT_SOURCE_DIR}/examples"
"${CMAKE_CURRENT_SOURCE_DIR}/admin/samples"
"${CMAKE_CURRENT_SOURCE_DIR}/quickstart")
set(DOXYGEN_EXCLUDE_SYMBOLS
"benchmarks"
"bigtable_admin_internal"
"bigtable_internal"
"internal"
"testing"
"examples"
"testproxy"
"test_proxy")
include(GoogleCloudCppDoxygen)
google_cloud_cpp_doxygen_targets("bigtable" DEPENDS cloud-docs
google-cloud-cpp::bigtable_protos)
include(GoogleCloudCppCommon)
include(GoogleCloudCppLibrary)
google_cloud_cpp_add_library_protos(bigtable)
# Enable unit tests
include(CTest)
# Export the version information for Bazel.
include(CreateBazelConfig)
find_package(opentelemetry-cpp CONFIG)
# the client library
add_library(
google_cloud_cpp_bigtable # cmake-format: sort
admin/bigtable_instance_admin_client.cc
admin/bigtable_instance_admin_client.h
admin/bigtable_instance_admin_connection.cc
admin/bigtable_instance_admin_connection.h
admin/bigtable_instance_admin_connection_idempotency_policy.cc
admin/bigtable_instance_admin_connection_idempotency_policy.h
admin/bigtable_instance_admin_options.h
admin/bigtable_table_admin_client.cc
admin/bigtable_table_admin_client.h
admin/bigtable_table_admin_connection.cc
admin/bigtable_table_admin_connection.h
admin/bigtable_table_admin_connection_idempotency_policy.cc
admin/bigtable_table_admin_connection_idempotency_policy.h
admin/bigtable_table_admin_options.h
admin/internal/bigtable_instance_admin_auth_decorator.cc
admin/internal/bigtable_instance_admin_auth_decorator.h
admin/internal/bigtable_instance_admin_connection_impl.cc
admin/internal/bigtable_instance_admin_connection_impl.h
admin/internal/bigtable_instance_admin_logging_decorator.cc
admin/internal/bigtable_instance_admin_logging_decorator.h
admin/internal/bigtable_instance_admin_metadata_decorator.cc
admin/internal/bigtable_instance_admin_metadata_decorator.h
admin/internal/bigtable_instance_admin_option_defaults.cc
admin/internal/bigtable_instance_admin_option_defaults.h
admin/internal/bigtable_instance_admin_retry_traits.h
admin/internal/bigtable_instance_admin_stub.cc
admin/internal/bigtable_instance_admin_stub.h
admin/internal/bigtable_instance_admin_stub_factory.cc
admin/internal/bigtable_instance_admin_stub_factory.h
admin/internal/bigtable_instance_admin_tracing_connection.cc
admin/internal/bigtable_instance_admin_tracing_connection.h
admin/internal/bigtable_instance_admin_tracing_stub.cc
admin/internal/bigtable_instance_admin_tracing_stub.h
admin/internal/bigtable_table_admin_auth_decorator.cc
admin/internal/bigtable_table_admin_auth_decorator.h
admin/internal/bigtable_table_admin_connection_impl.cc
admin/internal/bigtable_table_admin_connection_impl.h
admin/internal/bigtable_table_admin_logging_decorator.cc
admin/internal/bigtable_table_admin_logging_decorator.h
admin/internal/bigtable_table_admin_metadata_decorator.cc
admin/internal/bigtable_table_admin_metadata_decorator.h
admin/internal/bigtable_table_admin_option_defaults.cc
admin/internal/bigtable_table_admin_option_defaults.h
admin/internal/bigtable_table_admin_retry_traits.h
admin/internal/bigtable_table_admin_stub.cc
admin/internal/bigtable_table_admin_stub.h
admin/internal/bigtable_table_admin_stub_factory.cc
admin/internal/bigtable_table_admin_stub_factory.h
admin/internal/bigtable_table_admin_tracing_connection.cc
admin/internal/bigtable_table_admin_tracing_connection.h
admin/internal/bigtable_table_admin_tracing_stub.cc
admin/internal/bigtable_table_admin_tracing_stub.h
admin_client.cc
admin_client.h
app_profile_config.cc
app_profile_config.h
async_row_reader.h
bound_query.cc
bound_query.h
bytes.cc
bytes.h
cell.h
client.cc
client.h
client_options.cc
client_options.h
cluster_config.cc
cluster_config.h
cluster_list_responses.h
column_family.h
completion_queue.h
data_client.cc
data_client.h
data_connection.cc
data_connection.h
expr.cc
expr.h
filters.h
iam_binding.cc
iam_binding.h
iam_policy.cc
iam_policy.h
idempotent_mutation_policy.cc
idempotent_mutation_policy.h
instance_admin.cc
instance_admin.h
instance_admin_client.cc
instance_admin_client.h
instance_config.cc
instance_config.h
instance_list_responses.h
instance_resource.cc
instance_resource.h
instance_update_config.cc
instance_update_config.h
internal/admin_client_params.cc
internal/admin_client_params.h
internal/async_bulk_apply.cc
internal/async_bulk_apply.h
internal/async_retry_op.h
internal/async_row_reader.cc
internal/async_row_reader.h
internal/async_row_sampler.cc
internal/async_row_sampler.h
internal/async_streaming_read.h
internal/bigtable_auth_decorator.cc
internal/bigtable_auth_decorator.h
internal/bigtable_channel_refresh.cc
internal/bigtable_channel_refresh.h
internal/bigtable_logging_decorator.cc
internal/bigtable_logging_decorator.h
internal/bigtable_metadata_decorator.cc
internal/bigtable_metadata_decorator.h
internal/bigtable_round_robin_decorator.cc
internal/bigtable_round_robin_decorator.h
internal/bigtable_stub.cc
internal/bigtable_stub.h
internal/bigtable_stub_factory.cc
internal/bigtable_stub_factory.h
internal/bigtable_tracing_stub.cc
internal/bigtable_tracing_stub.h
internal/bulk_mutator.cc
internal/bulk_mutator.h
internal/client_options_defaults.h
internal/common_client.h
internal/connection_refresh_state.cc
internal/connection_refresh_state.h
internal/convert_policies.cc
internal/convert_policies.h
internal/data_connection_impl.cc
internal/data_connection_impl.h
internal/data_tracing_connection.cc
internal/data_tracing_connection.h
internal/default_row_reader.cc
internal/default_row_reader.h
internal/defaults.cc
internal/defaults.h
internal/google_bytes_traits.cc
internal/google_bytes_traits.h
internal/legacy_async_bulk_apply.cc
internal/legacy_async_bulk_apply.h
internal/legacy_async_row_reader.cc
internal/legacy_async_row_reader.h
internal/legacy_async_row_sampler.cc
internal/legacy_async_row_sampler.h
internal/legacy_row_reader.cc
internal/legacy_row_reader.h
internal/logging_data_client.cc
internal/logging_data_client.h
internal/logging_result_set_reader.cc
internal/logging_result_set_reader.h
internal/metrics.cc
internal/metrics.h
internal/mutate_rows_limiter.cc
internal/mutate_rows_limiter.h
internal/operation_context.cc
internal/operation_context.h
internal/operation_context_factory.cc
internal/operation_context_factory.h
internal/partial_result_set_reader.h
internal/partial_result_set_resume.cc
internal/partial_result_set_resume.h
internal/partial_result_set_source.cc
internal/partial_result_set_source.h
internal/prefix_range_end.cc
internal/prefix_range_end.h
internal/query_plan.cc
internal/query_plan.h
internal/rate_limiter.cc
internal/rate_limiter.h
internal/readrowsparser.cc
internal/readrowsparser.h
internal/retry_traits.cc
internal/retry_traits.h
internal/row_reader_impl.h
internal/rpc_policy_parameters.h
internal/rpc_policy_parameters.inc
internal/traced_row_reader.cc
internal/traced_row_reader.h
internal/tuple_utils.h
internal/unary_client_utils.h
metadata_update_policy.cc
metadata_update_policy.h
mutation_batcher.cc
mutation_batcher.h
mutation_branch.h
mutations.cc
mutations.h
options.h
polling_policy.cc
polling_policy.h
prepared_query.cc
prepared_query.h
query_row.cc
query_row.h
read_modify_write_rule.h
resource_names.cc
resource_names.h
result_source_interface.h
retry_policy.h
row.h
row_key.h
row_key_sample.h
row_range.cc
row_range.h
row_reader.cc
row_reader.h
row_set.cc
row_set.h
row_stream.cc
row_stream.h
rpc_backoff_policy.cc
rpc_backoff_policy.h
rpc_retry_policy.cc
rpc_retry_policy.h
sql_statement.cc
sql_statement.h
table.cc
table.h
table_admin.cc
table_admin.h
table_config.cc
table_config.h
table_resource.cc
table_resource.h
timestamp.cc
timestamp.h
value.cc
value.h
version.cc
version.h
version_info.h
wait_for_consistency.cc
wait_for_consistency.h)
target_link_libraries(
google_cloud_cpp_bigtable
PUBLIC absl::memory
google-cloud-cpp::bigtable_protos
google-cloud-cpp::common
google-cloud-cpp::grpc_utils
gRPC::grpc++
gRPC::grpc
protobuf::libprotobuf)
if (opentelemetry-cpp_FOUND)
target_compile_definitions(
google_cloud_cpp_bigtable
PRIVATE GOOGLE_CLOUD_CPP_BIGTABLE_WITH_OTEL_METRICS)
target_link_libraries(google_cloud_cpp_bigtable
PUBLIC google-cloud-cpp::opentelemetry)
set(EXTRA_MODULES "google_cloud_cpp_opentelemetry" "opentelemetry_metrics")
endif ()
google_cloud_cpp_add_common_options(google_cloud_cpp_bigtable)
target_include_directories(
google_cloud_cpp_bigtable
PUBLIC $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}>
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}>
$<INSTALL_INTERFACE:include>)
target_compile_options(google_cloud_cpp_bigtable
PUBLIC ${GOOGLE_CLOUD_CPP_EXCEPTIONS_FLAG})
set_target_properties(
google_cloud_cpp_bigtable
PROPERTIES EXPORT_NAME "google-cloud-cpp::bigtable"
VERSION ${PROJECT_VERSION}
SOVERSION ${PROJECT_VERSION_MAJOR})
add_library(google-cloud-cpp::bigtable ALIAS google_cloud_cpp_bigtable)
include(CreateBazelConfig)
create_bazel_config(google_cloud_cpp_bigtable)
# Export the CMake targets to make it easy to create configuration files.
install(
EXPORT google_cloud_cpp_bigtable-targets
DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/google_cloud_cpp_bigtable"
COMPONENT google_cloud_cpp_development)
install(
TARGETS google_cloud_cpp_bigtable google_cloud_cpp_bigtable_protos
EXPORT google_cloud_cpp_bigtable-targets
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
COMPONENT google_cloud_cpp_runtime
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
COMPONENT google_cloud_cpp_runtime
NAMELINK_COMPONENT google_cloud_cpp_development
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
COMPONENT google_cloud_cpp_development)
google_cloud_cpp_install_headers("google_cloud_cpp_bigtable"
"include/google/cloud/bigtable")
google_cloud_cpp_add_pkgconfig(
bigtable
"The Google Cloud Bigtable C++ Client Library"
"Provides C++ APIs to access Google Cloud Bigtable."
"google_cloud_cpp_grpc_utils"
"google_cloud_cpp_common"
"google_cloud_cpp_bigtable_protos"
${EXTRA_MODULES})
# Create and install the CMake configuration files.
include(CMakePackageConfigHelpers)
configure_file("config.cmake.in" "google_cloud_cpp_bigtable-config.cmake" @ONLY)
write_basic_package_version_file(
"google_cloud_cpp_bigtable-config-version.cmake"
VERSION ${PROJECT_VERSION}
COMPATIBILITY ExactVersion)
install(
FILES
"${CMAKE_CURRENT_BINARY_DIR}/google_cloud_cpp_bigtable-config.cmake"
"${CMAKE_CURRENT_BINARY_DIR}/google_cloud_cpp_bigtable-config-version.cmake"
DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/google_cloud_cpp_bigtable"
COMPONENT google_cloud_cpp_development)
if (GOOGLE_CLOUD_CPP_WITH_MOCKS)
add_library(
google_cloud_cpp_bigtable_mocks # cmake-format: sort
admin/mocks/mock_bigtable_instance_admin_connection.h
admin/mocks/mock_bigtable_table_admin_connection.h
mocks/mock_data_connection.h
mocks/mock_query_row.h
mocks/mock_row_reader.cc
mocks/mock_row_reader.h)
target_link_libraries(
google_cloud_cpp_bigtable_mocks
PUBLIC google-cloud-cpp::bigtable
INTERFACE GTest::gmock GTest::gtest)
set_target_properties(
google_cloud_cpp_bigtable_mocks
PROPERTIES EXPORT_NAME google-cloud-cpp::bigtable_mocks)
create_bazel_config(google_cloud_cpp_bigtable_mocks YEAR "2021")
target_include_directories(
google_cloud_cpp_bigtable_mocks
INTERFACE $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}>
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}>
$<INSTALL_INTERFACE:include>)
target_compile_options(google_cloud_cpp_bigtable_mocks
INTERFACE ${GOOGLE_CLOUD_CPP_EXCEPTIONS_FLAG})
add_library(google-cloud-cpp::bigtable_mocks ALIAS
google_cloud_cpp_bigtable_mocks)
google_cloud_cpp_install_mocks(bigtable "Google Cloud Bigtable")
endif ()
if (BUILD_TESTING)
add_library(
bigtable_client_testing # cmake-format: sort
testing/cleanup_stale_resources.cc
testing/cleanup_stale_resources.h
testing/embedded_server_test_fixture.cc
testing/embedded_server_test_fixture.h
testing/inprocess_data_client.cc
testing/inprocess_data_client.h
testing/mock_async_failing_rpc_factory.h
testing/mock_bigtable_stub.h
testing/mock_data_client.h
testing/mock_mutate_rows_limiter.h
testing/mock_mutate_rows_reader.h
testing/mock_partial_result_set_reader.h
testing/mock_policies.h
testing/mock_read_rows_reader.h
testing/mock_response_reader.h
testing/mock_sample_row_keys_reader.h
testing/random_names.cc
testing/random_names.h
testing/table_integration_test.cc
testing/table_integration_test.h
testing/table_test_fixture.cc
testing/table_test_fixture.h)
target_link_libraries(
bigtable_client_testing
PUBLIC google-cloud-cpp::bigtable
google-cloud-cpp::bigtable_mocks
google-cloud-cpp::bigtable_protos
google-cloud-cpp::common
google-cloud-cpp::grpc_utils
google_cloud_cpp_testing
google_cloud_cpp_testing_grpc
GTest::gmock_main
GTest::gmock
GTest::gtest
gRPC::grpc++
gRPC::grpc
absl::memory
absl::str_format
protobuf::libprotobuf)
google_cloud_cpp_add_common_options(bigtable_client_testing)
create_bazel_config(bigtable_client_testing)
# List the unit tests, then setup the targets and dependencies.
set(bigtable_client_unit_tests
# cmake-format: sort
admin_client_test.cc
app_profile_config_test.cc
async_read_stream_test.cc
bigtable_version_test.cc
bound_query_test.cc
bytes_test.cc
cell_test.cc
client_options_test.cc
client_test.cc
cluster_config_test.cc
column_family_test.cc
data_client_test.cc
data_connection_test.cc
expr_test.cc
filters_test.cc
force_sanitizer_failures_test.cc
iam_binding_test.cc
iam_policy_test.cc
idempotent_mutation_policy_test.cc
instance_admin_client_test.cc
instance_admin_test.cc
instance_config_test.cc
instance_resource_test.cc
instance_update_config_test.cc
internal/admin_client_params_test.cc
internal/async_bulk_apply_test.cc
internal/async_row_reader_test.cc
internal/async_row_sampler_test.cc
internal/async_streaming_read_test.cc
internal/bigtable_channel_refresh_test.cc
internal/bigtable_stub_factory_test.cc
internal/bulk_mutator_test.cc
internal/connection_refresh_state_test.cc
internal/convert_policies_test.cc
internal/data_connection_impl_test.cc
internal/data_tracing_connection_test.cc
internal/default_row_reader_test.cc
internal/defaults_test.cc
internal/google_bytes_traits_test.cc
internal/legacy_async_bulk_apply_test.cc
internal/legacy_async_row_reader_test.cc
internal/legacy_async_row_sampler_test.cc
internal/legacy_bulk_mutator_test.cc
internal/legacy_row_reader_test.cc
internal/logging_data_client_test.cc
internal/logging_result_set_reader_test.cc
internal/metrics_test.cc
internal/mutate_rows_limiter_test.cc
internal/operation_context_factory_test.cc
internal/operation_context_test.cc
internal/partial_result_set_resume_test.cc
internal/partial_result_set_source_test.cc
internal/prefix_range_end_test.cc
internal/query_plan_test.cc
internal/rate_limiter_test.cc
internal/retry_traits_test.cc
internal/traced_row_reader_test.cc
internal/tuple_utils_test.cc
legacy_table_test.cc
metadata_update_policy_test.cc
mocks/mock_row_reader_test.cc
mutation_batcher_test.cc
mutations_test.cc
polling_policy_test.cc
prepared_query_test.cc
query_row_test.cc
read_modify_write_rule_test.cc
row_range_test.cc
row_reader_test.cc
row_set_test.cc
row_stream_test.cc
row_test.cc
rpc_backoff_policy_test.cc
rpc_retry_policy_test.cc
sql_statement_test.cc
table_admin_test.cc
table_apply_test.cc
table_bulk_apply_test.cc
table_check_and_mutate_row_test.cc
table_config_test.cc
table_readmodifywriterow_test.cc
table_readrow_test.cc
table_readrows_test.cc
table_resource_test.cc
table_sample_row_keys_test.cc
table_test.cc
testing/cleanup_stale_resources_test.cc
testing/random_names_test.cc
timestamp_test.cc
value_test.cc
wait_for_consistency_test.cc)
# Export the list of unit tests so the Bazel BUILD file can pick it up.
export_list_to_bazel("bigtable_client_unit_tests.bzl"
"bigtable_client_unit_tests" YEAR "2018")
# Append this unit test after exporting to Bazel because it requires special
# treatment
list(APPEND bigtable_client_unit_tests internal/readrowsparser_test.cc)
foreach (fname ${bigtable_client_unit_tests})
google_cloud_cpp_add_executable(target "bigtable" "${fname}")
target_link_libraries(
${target}
PRIVATE absl::memory
bigtable_client_testing
google-cloud-cpp::bigtable
google-cloud-cpp::bigtable_protos
google_cloud_cpp_testing
google_cloud_cpp_testing_grpc
google-cloud-cpp::common
google-cloud-cpp::grpc_utils
GTest::gmock_main
GTest::gmock
GTest::gtest
gRPC::grpc++
gRPC::grpc
protobuf::libprotobuf)
if (opentelemetry-cpp_FOUND)
target_compile_definitions(
${target} PRIVATE GOOGLE_CLOUD_CPP_BIGTABLE_WITH_OTEL_METRICS)
endif ()
google_cloud_cpp_add_common_options(${target})
add_test(NAME ${target} COMMAND ${target})
endforeach ()
endif ()
# Only compile integration tests and benchmarks if testing is enabled.
if (BUILD_TESTING)
add_subdirectory(admin/samples)
add_subdirectory(benchmarks)
add_subdirectory(test_proxy)
add_subdirectory(tests)
endif ()
# Examples are enabled if possible, but package maintainers may want to disable
# compilation to speed up their builds.
if (GOOGLE_CLOUD_CPP_ENABLE_EXAMPLES)
add_executable(bigtable_quickstart "quickstart/quickstart.cc")
target_link_libraries(bigtable_quickstart
PRIVATE google-cloud-cpp::bigtable)
google_cloud_cpp_add_common_options(bigtable_quickstart)
add_test(
NAME bigtable_quickstart
COMMAND
cmake -P "${PROJECT_SOURCE_DIR}/cmake/quickstart-runner.cmake"
$<TARGET_FILE:bigtable_quickstart> GOOGLE_CLOUD_PROJECT
GOOGLE_CLOUD_CPP_BIGTABLE_TEST_INSTANCE_ID
GOOGLE_CLOUD_CPP_BIGTABLE_TEST_QUICKSTART_TABLE)
set_tests_properties(bigtable_quickstart
PROPERTIES LABELS "integration-test;quickstart")
endif ()