Basic Installation
==================

Nickle uses the meson build system (https://mesonbuild.com/). These
two commands will configure, build, test and install the interpreter:

$ meson setup build
$ ninja -C build test install

Optional Features
=================

There's only one nickle-specific configuration option, libedit, which
directs the build to use libedit instead of libreadline for
command-line editing:

$ meson setup build -Dlibedit=true

Installation
============

Select an installation prefix other than the default (/usr/local) with
the --prefix option:

$ meson setup build --prefix=/usr
