2018-12-01 09:11:26 +07:00
|
|
|
Meson build system for zstandard
|
|
|
|
================================
|
2018-11-29 11:49:33 +07: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-12-28 11:17:11 +07:00
|
|
|
by Dima Krasner \<dima@dimakrasner.com\>.
|
2018-11-28 00:10:04 +07:00
|
|
|
|
|
|
|
It outputs one `libzstd`, either shared or static, depending on
|
|
|
|
`default_library` option.
|
|
|
|
|
2018-11-29 11:49:33 +07:00
|
|
|
## How to build
|
2018-11-28 00:10:04 +07:00
|
|
|
|
2018-11-29 11:49:33 +07:00
|
|
|
`cd` to this meson directory (`build/meson`)
|
2018-11-28 00:10:04 +07:00
|
|
|
|
|
|
|
```sh
|
2019-06-29 01:59:57 +07:00
|
|
|
meson setup -Dbin_programs=true -Dbin_contrib=true builddir
|
2018-11-28 00:10:04 +07: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 11:49:33 +07:00
|
|
|
To configure build options, use:
|
2018-11-28 00:10:04 +07:00
|
|
|
|
|
|
|
```sh
|
|
|
|
meson configure
|
|
|
|
```
|
|
|
|
|
|
|
|
See [man meson(1)](https://manpages.debian.org/testing/meson/meson.1.en.html).
|