2024-08-29 22:10:16 +00:00
|
|
|
# Frillrun
|
|
|
|
|
|
|
|
My entry for the 2024 WeightGaming Gain Jam. Action game where you collect stuff while random events occur.
|
|
|
|
|
|
|
|
## Build
|
|
|
|
|
|
|
|
### Dependencies
|
|
|
|
|
|
|
|
- SDL2
|
|
|
|
- SDL_image
|
|
|
|
- SDL_mixer
|
|
|
|
- SDL_ttf
|
|
|
|
- GLEW
|
|
|
|
|
2024-08-30 02:19:35 +00:00
|
|
|
You'll also need the game resources in the same directory as the executable; get that on my site.
|
2024-08-30 01:47:29 +00:00
|
|
|
|
2024-08-29 22:10:16 +00:00
|
|
|
### Linux
|
|
|
|
|
|
|
|
This repository uses CMake to compile, so:
|
|
|
|
|
|
|
|
`mkdir build`
|
|
|
|
|
|
|
|
`cd build`
|
|
|
|
|
|
|
|
`cmake ..`
|
|
|
|
|
|
|
|
`make`
|
|
|
|
|
|
|
|
### Windows
|
|
|
|
|
|
|
|
I used MinGW for the Windows build, so basically the same as Linux but you'll need to use MSYS, MinGW, etc. to compile it.
|