Update README.md

This commit is contained in:
Eugene Kliuchnikov 2017-09-19 10:46:10 +02:00 committed by GitHub
parent 52f0483332
commit 248bddd0d7

View File

@ -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