aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md8
1 files changed, 3 insertions, 5 deletions
diff --git a/README.md b/README.md
index 5fc998e..31506e0 100644
--- a/README.md
+++ b/README.md
@@ -45,13 +45,11 @@ See [Bazel](http://www.bazel.build/)
#### CMake
-The basic commands to build, test and install brotli are:
+The basic commands to build and install brotli are:
$ mkdir out && cd out
- $ cmake ..
- $ make
- $ make test
- $ make install
+ $ cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=./installed ..
+ $ cmake --build . --config Release --target install
You can use other [CMake](https://cmake.org/) configuration. For example, to
build static libraries: