lz4/contrib/meson
Lzu Tao ff27a1572b meson: Always build gen_manual on build machine
As gen_manual is using as a generator, not a binary target
installed on host machine.
2019-06-29 10:11:32 +07:00
..
contrib meson: Always build gen_manual on build machine 2019-06-29 10:11:32 +07:00
examples Add meson build system 2018-12-02 10:00:27 +07:00
lib meson: Add -DLZ4_DLL_EXPORT=1 to build dynamic lib on Windows 2019-01-23 15:40:26 +07:00
programs meson: Update man1 extension in meson 0.49.0 2018-12-13 14:52:51 +07:00
tests meson test: Update timeout and tests that use COPYING 2018-12-03 19:19:02 +07:00
GetLz4LibraryVersion.py meson: Remove unused sys import 2018-12-14 11:12:22 +07:00
InstallSymlink.py Simplify logic by setting default value for MESON_INSTALL_DESTDIR_PREFIX 2018-12-13 18:08:01 +07:00
meson_options.txt meson: Fix deprecated warnings on build options 2019-06-29 10:10:05 +07:00
meson.build meson: Fix deprecated warnings on build options 2019-06-29 10:10:05 +07:00
README.md meson: Fix deprecated warnings on build options 2019-06-29 10:10:05 +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 setup --buildtype=release -Ddefault_library=shared -Dbin_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).