Skip to content

Commit 7041760

Browse files
authored
Merge pull request #7 from mbrukman/update-readme-build-instructions
Cleanup and update READMEs. [skip ci]
2 parents 003a381 + a0eb4f1 commit 7041760

2 files changed

Lines changed: 20 additions & 16 deletions

File tree

README.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,31 @@
1-
# C++ Client Libraries for Google Cloud
1+
# Google Cloud Platform C++ Client Libraries
22

33
[![Travis CI status][travis-shield]][travis-link]
44

55
[travis-shield]: https://travis-ci.org/GoogleCloudPlatform/google-cloud-cpp.svg
66
[travis-link]: https://travis-ci.org/GoogleCloudPlatform/google-cloud-cpp/builds
77

8-
This repo contains experimental client libraries for:
8+
This repo contains experimental client libraries for the following APIs:
99

10-
* [Cloud Bigtable](bigtable/)
10+
* [Google Cloud Bigtable](bigtable/)
1111

1212
The libraries in this code base likely do not (yet) cover all the available
13-
calls. See the [`googleapis` repo](https://github.com/googleapis/googleapis)
13+
APIs. See the [`googleapis` repo](https://github.com/googleapis/googleapis)
1414
for the full list of APIs callable using gRPC.
1515

16+
To build the available libraries and run the tests, run the following commands
17+
after cloning this repo:
18+
19+
```sh
20+
git submodule init
21+
git submodule update --init --recursive
22+
mkdir build
23+
cd build
24+
cmake ..
25+
make all
26+
make test
27+
```
28+
1629
## Contributing changes
1730

1831
See [`CONTRIBUTING.md`](CONTRIBUTING.md) for details on how to contribute to

bigtable/README.md

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
To build and run with the latest protobuf and grpc, follow the steps below.
1+
# Google Cloud Bigtable
22

3-
1. **Compile and Test:**
4-
```sh
5-
cd google-cloud-cpp/
6-
git submodule init
7-
git submodule update --init --recursive
8-
mkdir build
9-
cd build
10-
cmake ..
11-
make all
12-
make test
13-
```
3+
This directory contains the implementation of the Google Cloud Bigtable C++
4+
client. This is a work-in-progress and is not yet suitable for production use.

0 commit comments

Comments
 (0)