aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas@google.com>2017-09-04 14:54:51 +0200
committerGitHub <noreply@github.com>2017-09-04 14:54:51 +0200
commitfe09a5030c2fdaee197819c24bd506bbe12bb7f8 (patch)
treec8928f386cdfae97765512f6d2ecb8ec5c6c40b0
parenta629289e3297bcfd25648293df3e1d6dfd59df24 (diff)
downloadbrotli-fe09a5030c2fdaee197819c24bd506bbe12bb7f8.tar.gz
Update README.md
-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: