https://github.com/msanatan/raylibtemplate
A template to be used for my Raylib projects
https://github.com/msanatan/raylibtemplate
cpp html5 macos raylib template windows
Last synced: 3 months ago
JSON representation
A template to be used for my Raylib projects
- Host: GitHub
- URL: https://github.com/msanatan/raylibtemplate
- Owner: msanatan
- Created: 2023-02-22T03:57:21.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-09-30T02:41:53.000Z (9 months ago)
- Last Synced: 2025-09-30T04:18:34.905Z (9 months ago)
- Topics: cpp, html5, macos, raylib, template, windows
- Language: C++
- Homepage:
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Raylib Template
This is a template for a raylib project. It uses CMake and Ninja to build the project and includes a few useful things:
- Basic Raylib 3d project
- GitHub Actions for building for Windows, macOS, and HTML5
- Your hopes and dreams
## Requirements
This template requires:
- CMake
- Ninja
### macOS Setup (with Homebrew)
```sh
brew install cmake ninja
```
### General Build Instructions
```sh
cmake -B build -G Ninja
cmake --build build
```
The built executable will be in the `build/` directory.