Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dudemelo/sdl3-kickstart
The start point for a new game project using the SDL3 library
https://github.com/dudemelo/sdl3-kickstart
Last synced: 28 days ago
JSON representation
The start point for a new game project using the SDL3 library
- Host: GitHub
- URL: https://github.com/dudemelo/sdl3-kickstart
- Owner: dudemelo
- License: mit
- Created: 2024-11-30T13:13:43.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-02T18:09:55.000Z (about 1 month ago)
- Last Synced: 2024-12-02T19:24:38.410Z (about 1 month ago)
- Language: C++
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SDL3 Kickstart
The start point for a new game project using the [SDL3](https://wiki.libsdl.org/SDL3/NewFeatures)
library.## Requirements
- [Python 3](https://www.python.org/downloads/)
- [Conan](https://docs.conan.io/2/installation.html)
- [Meson](https://mesonbuild.com/Quick-guide.html)
- [Ninja](https://ninja-build.org/)## Getting started
### 1. Install Conan dependencies
```sh
conan install . -of build/
```### 2. Configure Meson project
```sh
meson setup --native-file build/conan_meson_native.ini . build/
```### 3. Compile the project
```sh
meson compile -C build
```### 4. Run the project
```sh
./build/sdl3-kickstart
```