10 lines
403 B
Bash
Executable File
10 lines
403 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 -Wno-writable-strings -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 |