diff options
author | talha <sarcxd@gmail.com> | 2025-02-22 23:01:46 +0500 |
---|---|---|
committer | talha <sarcxd@gmail.com> | 2025-02-22 23:01:46 +0500 |
commit | ac4d7684dd69c40d16319b2f9a86363ef8c6f561 (patch) | |
tree | 259267a37d391cab3f25390cb06de868b29eca18 /build.sh | |
parent | 936b9b3e0f09edf92a17fcbacc43098c61728d9d (diff) |
First pass at using stb_truetype, removed freetype
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ include_opts="-I $include_path" files="source/main.cpp $include_path/glad/glad.c" build_opts="$build_dir/main" -lib_path="libs/SDL2 libs/freetype/libfreetype.so" +lib_path="libs/SDL2" link_opts="-L $lib_path -lSDL2 -lpthread -lm -ldl" build_command="clang++ -std=c++11 -g -O0 -fsanitize=address $include_opts $files $link_opts -o $build_opts" |