Frame_Forge is a lightweight application written in C for rendering or handling frame-based operations. The repository includes source files for main logic, frame management, display handling via SDL2, and logging utilities. Build instructions are included for both Linux and Windows (SDL2) platforms.
gcc src/main.c ./src/display/display_sdl.c src/frame/frame.c ./src/log/log.c -Isrc -DUSE_SDL `sdl2-config --cflags --libs` -O2 -Wall -o app1# Setup env
.\docs\tools\windows_setup.bat
# Build
gcc src/main.c src/display/display_sdl.c src/frame/frame.c src/log/log.c -Isrc -Ibuild/windows_setup/SDL2/include -Ibuild/windows_setup/SDL2/include/SDL2 -Lbuild/windows_setup/SDL2/lib -O2 -Wall -lmingw32 -lSDL2main -lSDL2 -lpthread -o bin/Frame_Forge