2020-08-30 00:41:54 +02:00
|
|
|
# Building
|
|
|
|
|
|
|
|
## Windows with devkitPros version of msys2
|
|
|
|
Setup mingw:
|
|
|
|
1. Add the mingw64 repository to `/etc/pacman.conf`.
|
|
|
|
```
|
|
|
|
[mingw64]
|
|
|
|
Server = https://repo.msys2.org/mingw/x86_64
|
|
|
|
```
|
|
|
|
2. Install packages (List taken from [here](https://gist.github.com/thales17/fb2e4cff60890a51d9dddd4c6e832ad2))
|
|
|
|
```
|
|
|
|
pacman -Syu
|
|
|
|
pacman -S git mingw-w64-x86_64-toolchain mingw64/mingw-w64-x86_64-SDL2 mingw64/mingw-w64-x86_64-SDL2_mixer mingw64/mingw-w64-x86_64-SDL2_image mingw64/mingw-w64-x86_64-SDL2_ttf mingw64/mingw-w64-x86_64-SDL2_net mingw64/mingw-w64-x86_64-cmake mingw-w64-x86_64-glm make
|
|
|
|
```
|
|
|
|
|
|
|
|
```
|
2020-08-30 13:57:54 +02:00
|
|
|
make -f .\Makefile.pc-win
|
2020-08-30 12:46:49 +02:00
|
|
|
```
|
|
|
|
|
2020-08-30 16:56:03 +02:00
|
|
|
## Windows with docker
|
|
|
|
|
|
|
|
```
|
|
|
|
docker build . -f .\Dockerfile.pc-win -t sdl2_playground-builder-pc-win
|
|
|
|
docker run -it --rm -v ${PWD}:/project sdl2_playground-builder-pc-win make -f .\Makefile.pc-win -j16
|
|
|
|
```
|
|
|
|
|
2020-08-30 12:46:49 +02:00
|
|
|
## Wii U
|
|
|
|
|
|
|
|
And these from [dkp-libs](https://devkitpro.org/wiki/devkitPro_pacman):
|
2020-08-30 16:53:28 +02:00
|
|
|
- `(dkp)pacman -S devkitPPC wut-tools wut wiiu-portlibs wiiu-sdl2-libs`
|
2020-08-30 12:46:49 +02:00
|
|
|
|
|
|
|
Build via:
|
|
|
|
`make -f Makefile.wiiu`
|