https://github.com/rtbo/simple-meson-d
Kind of minimal example of using MESON with D
https://github.com/rtbo/simple-meson-d
Last synced: 5 months ago
JSON representation
Kind of minimal example of using MESON with D
- Host: GitHub
- URL: https://github.com/rtbo/simple-meson-d
- Owner: rtbo
- Created: 2023-06-05T21:15:23.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-05T21:15:45.000Z (about 3 years ago)
- Last Synced: 2025-01-30T19:26:38.386Z (over 1 year ago)
- Language: Meson
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Kind of minimal example of using MESON with D.
configure, build and test:
```sh
DC=dmd meson setup build # configure
cd build
meson compile # build
application/application # run application
meson test # run unittests
```