2018-12-01 02:11:26 +00:00
|
|
|
Meson build system for zstandard
|
|
|
|
================================
|
2018-11-29 04:49:33 +00:00
|
|
|
|
|
|
|
Meson is a build system designed to optimize programmer productivity.
|
|
|
|
It aims to do this by providing simple, out-of-the-box support for
|
|
|
|
modern software development tools and practices, such as unit tests,
|
|
|
|
coverage reports, Valgrind, CCache and the like.
|
|
|
|
|
|
|
|
This Meson build system is provided with no guarantee and maintained
|
2018-11-27 17:10:04 +00:00
|
|
|
by Dima Krasner <dima@dimakrasner.com>.
|
|
|
|
|
|
|
|
It outputs one `libzstd`, either shared or static, depending on
|
|
|
|
`default_library` option.
|
|
|
|
|
2018-11-29 04:49:33 +00:00
|
|
|
## How to build
|
2018-11-27 17:10:04 +00:00
|
|
|
|
2018-11-29 04:49:33 +00:00
|
|
|
`cd` to this meson directory (`build/meson`)
|
2018-11-27 17:10:04 +00:00
|
|
|
|
|
|
|
```sh
|
2018-11-29 04:49:33 +00:00
|
|
|
meson --buildtype=release -D with-contrib=true -D with-tests=true -D with-contrib=true builddir
|
2018-11-27 17:10:04 +00:00
|
|
|
cd builddir
|
|
|
|
ninja # to build
|
|
|
|
ninja install # to install
|
|
|
|
```
|
|
|
|
|
|
|
|
You might want to install it in staging directory:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
DESTDIR=./staging ninja install
|
|
|
|
```
|
|
|
|
|
2018-11-29 04:49:33 +00:00
|
|
|
To configure build options, use:
|
2018-11-27 17:10:04 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
meson configure
|
|
|
|
```
|
|
|
|
|
|
|
|
See [man meson(1)](https://manpages.debian.org/testing/meson/meson.1.en.html).
|