Metadata-Version: 2.1
Name: colcon-meson
Version: 0.4.2
Summary: Extension for colcon to support Meson packages.
Author: Christian Rauch
Author-email: Rauch.Christian@gmx.de
Maintainer: Christian Rauch
Maintainer-email: Rauch.Christian@gmx.de
License: Apache License, Version 2.0
Project-URL: GitHub, https://github.com/colcon/colcon-meson
Keywords: colcon
Description-Content-Type: text/markdown
License-File: LICENSE

# colcon-meson

A colcon extension for building [Meson](https://mesonbuild.com) packages.

Install from the Python Package Index via:
```sh
pip install colcon-meson
```

## Passing Meson arguments

Arguments can be passed to `meson setup` via `--meson-args`:
1. set build options defined in `meson_options.txt`:
    ```sh
    colcon build --packages-select $PACKAGE --meson-args \
        -D$ARG1=$PARAM1 \
        -D$ARG2=$PARAM2
    ```
2. set the build type:
    ```sh
    colcon build --packages-select $PACKAGE --meson-args \
        --buildtype=debugoptimized
    ```

See `meson setup -h` for a detailed list of arguments.
