https://github.com/sharkwouter/mingw-game-builder
A container for building SDL2 based games for Windows
https://github.com/sharkwouter/mingw-game-builder
Last synced: 4 months ago
JSON representation
A container for building SDL2 based games for Windows
- Host: GitHub
- URL: https://github.com/sharkwouter/mingw-game-builder
- Owner: sharkwouter
- License: unlicense
- Created: 2022-02-23T16:18:00.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-23T17:41:34.000Z (over 4 years ago)
- Last Synced: 2025-10-27T23:59:04.207Z (8 months ago)
- Language: Dockerfile
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MinGW Game Builder
This repo contains the sources for a docker container which can be used for building Windows games. It has a toolchain file for building with CMake found at ``/usr/x86_64-w64-mingw32/share/toolchain.cmake`` within the container.
## Example of use
The container can be downloaded with:
```
docker pull ghcr.io/sharkwouter/mingw-game-builder:latest
```
Within the container, a game can be build using:
```
cmake -DCMAKE_TOOLCHAIN_FILE=/usr/x86_64-w64-mingw32/share/toolchain.cmake .
make
```
## Libraries included
The following libraries are included:
- SDL2
- SDL2_mixer
- SDL2_image
- SDL2_ttf
- jsoncpp