An open API service indexing awesome lists of open source software.

https://github.com/stevenferrer/cpp-meson-template

C++ template repository with Meson build
https://github.com/stevenferrer/cpp-meson-template

cpp meson

Last synced: about 1 month ago
JSON representation

C++ template repository with Meson build

Awesome Lists containing this project

README

          

# cpp-meson-example

C++ template repository with Meson build.

## Setup

```sh
meson setup build [--wipe]
```

## Build

```sh
meson compile -C build
```

## Test

```sh
meson test -C build
```

## Clean

```sh
ninja -C build clean
```