Implement basic ImGUI editor for a game

This commit is contained in:
2024-09-08 22:19:04 +01:00
parent 30f016db1e
commit 0f6e9fdebb
3 changed files with 113 additions and 7 deletions

View File

@@ -1,8 +1,8 @@
#!/bin/bash
CC=clang
CFLAGS="-g -Wall $(pkg-config --cflags sdl2)"
LIBS="$(pkg-config --libs sdl2)"
CFLAGS="-g -Wall $(pkg-config --cflags sdl2) -Wl,-rpath,\$ORIGIN/lib -Ivendor"
LIBS="$(pkg-config --libs sdl2) -Llib -lcimgui"
SRC=src/*.c
OUT=main