From ac4d7684dd69c40d16319b2f9a86363ef8c6f561 Mon Sep 17 00:00:00 2001 From: talha Date: Sat, 22 Feb 2025 23:01:46 +0500 Subject: First pass at using stb_truetype, removed freetype --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build.sh') diff --git a/build.sh b/build.sh index bacf0ef..b947753 100755 --- a/build.sh +++ b/build.sh @@ -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" -- cgit v1.2.3