Initial commit. Added base of framework

This commit is contained in:
2025-12-04 13:05:12 +02:00
commit 34ce515521
8 changed files with 250 additions and 0 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
src_files += main.cpp
src_files += sdl_helpers.cpp
src_files += Widgets/Widget.cpp
all:
g++ $(src_files) -Wall -lSDL2 -lSDL2_ttf -lSDL2_image -o trmnl_sdl
.PHONY: all