From b31ce2f89e878516bd2b71f8fa6f710d60295b13 Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Mon, 2 Dec 2019 16:36:34 +0100 Subject: [PATCH] cmake -> CMake Co-Authored-By: Zack Galbreath --- src/cpp/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/README.md b/src/cpp/README.md index 15be6b6ac79..85eaf91d5a5 100755 --- a/src/cpp/README.md +++ b/src/cpp/README.md @@ -41,7 +41,7 @@ If your project is using cmake, there are several ways to add gRPC dependency. - add gRPC source tree to your project (preferably as a git submodule) and add it to your cmake project with `add_subdirectory`. [Example](../../examples/cpp/helloworld/CMakeLists.txt) If your project is not using cmake (e.g. you're using `make` directly), you can first install gRPC C++ using cmake, -and have your non-cmake project rely on the `pkgconfig` files which are provided by gRPC installation. [Example](../../test/distrib/cpp/run_distrib_test_cmake_pkgconfig.sh) +and have your non-CMake project rely on the `pkgconfig` files which are provided by gRPC installation. [Example](../../test/distrib/cpp/run_distrib_test_cmake_pkgconfig.sh) ## make