https://github.com/samet404/meson-raylib
https://github.com/samet404/meson-raylib
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/samet404/meson-raylib
- Owner: samet404
- License: unlicense
- Created: 2025-04-14T16:58:44.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-14T16:58:48.000Z (about 1 year ago)
- Last Synced: 2025-06-07T12:46:10.349Z (12 months ago)
- Language: Meson
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
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
```