aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas@google.com>2017-09-19 10:46:10 +0200
committerGitHub <noreply@github.com>2017-09-19 10:46:10 +0200
commit248bddd0d7caf7dae3f36c1a7682a3e680e2d1f7 (patch)
tree74fd723d3f83f8825b347b8449fc3a4e86030196 /README.md
parent52f04833320d73a1970aaaf2737b23a63f85aeb2 (diff)
downloadbrotli-248bddd0d7caf7dae3f36c1a7682a3e680e2d1f7.zip
brotli-248bddd0d7caf7dae3f36c1a7682a3e680e2d1f7.tar.gz
brotli-248bddd0d7caf7dae3f36c1a7682a3e680e2d1f7.tar.bz2
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 2 insertions, 13 deletions
diff --git a/README.md b/README.md
index 31506e0..fb4e92c 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ https://groups.google.com/forum/#!forum/brotli
#### Autotools-style CMake
[configure-cmake](https://github.com/nemequ/configure-cmake) is an
-autotools-style configure script for CMake-based projects.
+autotools-style configure script for CMake-based projects (not supported on Windows).
The basic commands to build, test and install brotli are:
@@ -33,12 +33,6 @@ The basic commands to build, test and install brotli are:
$ make test
$ make install
-To build static libraries use `--disable-shared-libs` argument:
-
- $ mkdir out-static && cd out-static
- $ ../configure-cmake --disable-shared-libs
- $ make install
-
#### Bazel
See [Bazel](http://www.bazel.build/)
@@ -51,12 +45,7 @@ The basic commands to build and install brotli are:
$ 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:
-
- $ mkdir out-static && cd out-static
- $ cmake .. -DBUILD_SHARED_LIBS=OFF
- $ make
+You can use other [CMake](https://cmake.org/) configuration.
#### Premake5