lz4/contrib/meson
2018-12-09 18:57:49 +07:00
..
contrib Add meson build system 2018-12-02 10:00:27 +07:00
examples Add meson build system 2018-12-02 10:00:27 +07:00
lib No need to join prefix and let soversion base on version 2018-12-04 10:18:54 +07:00
programs meson: Correct support for Windows build 2018-12-03 22:48:37 +07:00
tests meson test: Update timeout and tests that use COPYING 2018-12-03 19:19:02 +07:00
GetLz4LibraryVersion.py Use argparse instead of manually parsing [skip ci] 2018-12-03 19:19:21 +07:00
InstallSymlink.py Use MESON_INSTALL_DESTDIR_PREFIX instead of DESTDIR 2018-12-04 10:18:01 +07:00
meson_options.txt Add meson build system 2018-12-02 10:00:27 +07:00
meson.build No need to join prefix and let soversion base on version 2018-12-04 10:18:54 +07:00
README.md meson: Add README.md for newcomers [skip ci] 2018-12-09 18:57:49 +07:00

Meson build system for lz4

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.

How to build

cd to this meson directory (contrib/meson)

meson --buildtype=release -Ddefault_library=shared -Dbuild_programs=true builddir
cd builddir
ninja             # to build
ninja install     # to install

You might want to install it in staging directory:

DESTDIR=./staging ninja install

To configure build options, use:

meson configure

See man meson(1).