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
- Host: GitHub
- URL: https://github.com/stevenferrer/cpp-meson-template
- Owner: stevenferrer
- License: mit
- Created: 2023-02-19T05:29:05.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-11-04T08:26:22.000Z (8 months ago)
- Last Synced: 2025-12-26T07:29:28.941Z (6 months ago)
- Topics: cpp, meson
- Language: Meson
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```