Files
text_editor/build.sh
2026-01-19 23:16:32 +01:00

10 lines
381 B
Bash
Executable File

#!/usr/bin/bash
mkdir build
cd build
FLAGS="-Wall -Wno-missing-braces -Wno-writable-strings -nostdlib++ -fsanitize=address -fno-exceptions -fdiagnostics-absolute-paths -g -I../src -DDEBUG_BUILD=1"
I="-I../src/external/SDL/include -I../src/external/lua/src -I../src/external/glad"
clang -o te $FLAGS ../src/text_editor/text_editor.cpp $I -lSDL3 -lm -lbacktrace
# -v -Wl,--verbose