https://github.com/xmake-examples/raygui-scaffold
A minimal raygui project template
https://github.com/xmake-examples/raygui-scaffold
raygui raylib template xmake
Last synced: about 1 month ago
JSON representation
A minimal raygui project template
- Host: GitHub
- URL: https://github.com/xmake-examples/raygui-scaffold
- Owner: xmake-examples
- Created: 2021-12-30T01:59:45.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-12-31T14:10:34.000Z (over 3 years ago)
- Last Synced: 2024-10-24T13:58:55.320Z (6 months ago)
- Topics: raygui, raylib, template, xmake
- Language: C
- Homepage:
- Size: 512 KB
- Stars: 11
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🌱 RayGui Scaffold
A minimal raygui project template
## 🦄 Usage
Simply click the button below to get started:
[](https://github.com/xmake-examples/raygui-scaffold/generate)
## 🔨 Development
### 📋 Requirements
To setup and use the project you will need to have the following tools installed:
- [Xmake](https://xmake.io/)### ⬇️ Installation
Clone the repository
```bash
$ git clone https://github.com/xmake-examples/raygui-scaffold.git
```Change the working directory to the newly cloned repository:
```bash
$ cd raygui-scaffold
```Run xmake to install the dependencies & build the project:
```bash
$ xmake
note: install or modify (m) these packages (pass -y to skip confirm)?
in xmake-repo:
-> raylib 4.0.0 [from:raygui]
-> raygui 3.0
please input: y (y/n/m)=> install raylib 4.0.0 .. ok
=> download https://github.com/raysan5/raygui/archive/refs/tags/3.0.tar.gz .. ok
=> install raygui 3.0 .. ok
[ 25%]: ccache compiling.release src/main.c
[ 50%]: linking.release raygui-scaffold
[100%]: build ok!
```Run the project after it has been built:
```bash
$ xmake run
```