Home

Awesome

<!-- SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe> SPDX-FileCopyrightText: Simon Zeni <simon@bl4ckb0ne.ca> SPDX-FileCopyrightText: Andrea Pappacoda <andrea@pappacoda.it> SPDX-License-Identifier: GPL-3.0-only --> <img src="https://muon.build/muon_logo.svg" alt="muon logo" height=64 />

muon

muon is an implementation of the meson build system in c99 with minimal dependencies.

Features

Status

muon is close to feature-complete with the core of meson for c and c++.

See the status page for each version for more detailed information.

Things missing include:

Other differences from meson are described in doc/differences.md

If you want to contribute, try using muon to build your favorite project. Patches and bug reports welcome!

Additionally, muon is not fully supported on all platforms yet. The current status may be viewed on muon's ci dashboard. Platforms with some or all tests disabled are currently WIP and platforms not tested in CI have unknown status. In general, posix systems should work fine.

Dependencies

Essential:

For pkgconf support:

For [wrap-file] support:

To build documentation:

To run most project tests:

Install

If you already have meson or muon and are not interested in bootstrapping, you can just do a typical meson configure, build, install:

$meson setup build
cd build
ninja build
$meson test
$meson install

Otherwise, you must bootstrap muon.

The bootstrapping process has two stages. The first stage produces a muon binary capable of building itself (but not necessarily anything else). The second stage produces the final binary.

Stage 1:

./bootstrap.sh build

This will by default build a ninja implementation (samu) into the resulting executable. To disable this behavior use CFLAGS=-DBOOTSTRAP_NO_SAMU.

Stage 2:

build/muon-bootstrap setup build
build/muon-bootstrap -C build samu
build/muon-bootstrap -C build test
build/muon-bootstrap -C build install

Contribute

Please refer to the contributing guide before sending patches. Send patches on the mailing list, report issues on the issue tracker, and discuss in #muon on libera.chat.

License

muon is licensed under the GPL version 3 (see LICENSE). Tests under tests/project were copied from the meson project tests and are licensed under Apache 2.0.

Credits

Although I had already had the idea to re-implement meson in C, I was initially inspired to actually go out and do it when I saw boson. muon's code was originally based on boson, though has since been almost completely rewritten.