https://github.com/gilzoide/raylib-meson-template
Minimal template project for C/C++ applications using raylib built using Meson
https://github.com/gilzoide/raylib-meson-template
meson raylib template
Last synced: 28 days ago
JSON representation
Minimal template project for C/C++ applications using raylib built using Meson
- Host: GitHub
- URL: https://github.com/gilzoide/raylib-meson-template
- Owner: gilzoide
- License: unlicense
- Created: 2021-01-12T23:26:20.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-09-24T00:00:34.000Z (over 1 year ago)
- Last Synced: 2025-06-25T08:45:36.567Z (8 months ago)
- Topics: meson, raylib, template
- Language: Meson
- Homepage:
- Size: 7.81 KB
- Stars: 22
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Minimal raylib + Meson C/C++ template
Minimal template project for C/C++ applications using [raylib](https://www.raylib.com/) built using [Meson](https://mesonbuild.com/).
## Setting up
Native builds:
```sh
$ meson setup build
# compile with
$ meson compile -C build
```
Web builds:
```sh
$ meson setup --cross-file cross-file/web.ini build/web
# compile with
$ meson compile -C build/web
```
Cross-compiled Windows builds using [MinGW](http://mingw.org):
```sh
$ meson setup --cross-file cross-file/windows32.ini build/win32
# compile with
$ meson compile -C build/win32
```