mirror of
https://github.com/blupi-games/planetblupi
synced 2024-12-30 10:15:36 +01:00
17 lines
432 B
Markdown
17 lines
432 B
Markdown
|
|
||
|
# Development
|
||
|
|
||
|
```
|
||
|
# Update your toolchain
|
||
|
pacman -Syuu
|
||
|
|
||
|
# Install main development packages
|
||
|
pacman -S --noconfirm --needed mingw-w64-x86_64-toolchain make mingw-w64-x86_64-cmake pkg-config
|
||
|
|
||
|
# Install SDL2 development packages
|
||
|
pacman -S --noconfirm --needed mingw-w64-x86_64-SDL2 mingw-w64-x86_64-SDL2_mixer
|
||
|
|
||
|
# Install SDL_kitchensink dependencies
|
||
|
pacman -S --noconfirm --needed mingw-w64-x86_64-libass mingw-w64-x86_64-ffmpeg
|
||
|
```
|