summaryrefslogtreecommitdiff
path: root/compiler/cpp/README.md
diff options
context:
space:
mode:
authorJames E. King III <jking@apache.org>2019-01-26 09:15:19 -0500
committerJames E. King III <jking@apache.org>2019-01-26 23:53:38 -0500
commit29f7f8f32f6bf88751e0ef3c8e3f2fba1aac5b8f (patch)
tree8237187ddf8cb2b04881486dd19ec46e259cb180 /compiler/cpp/README.md
parent3f559940c23deed67c61e1e8fd92e1aa5a6f108d (diff)
downloadthrift-29f7f8f32f6bf88751e0ef3c8e3f2fba1aac5b8f.tar.gz
THRIFT-4743: remove cpp compiler plugin support to simplify the project
Diffstat (limited to 'compiler/cpp/README.md')
-rw-r--r--compiler/cpp/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/cpp/README.md b/compiler/cpp/README.md
index 355191293..5c04cd869 100644
--- a/compiler/cpp/README.md
+++ b/compiler/cpp/README.md
@@ -67,7 +67,7 @@ brew install bison
```
mkdir cmake-build && cd cmake-build
-cmake -G "Xcode" -DWITH_PLUGIN=OFF ..
+cmake -G "Xcode" ..
cmake --build .
```
@@ -107,7 +107,7 @@ cmake --build .
```
mkdir cmake-vs
cd cmake-vs
-cmake -G "Visual Studio 15 2017" -DWITH_PLUGIN=OFF ..
+cmake -G "Visual Studio 15 2017" ..
```
- Now open the folder cmake-vs using Visual Studio.