diff options
author | talha <talha@talhaamir.xyz> | 2024-06-21 00:33:35 +0500 |
---|---|---|
committer | talha <talha@talhaamir.xyz> | 2024-06-21 00:33:35 +0500 |
commit | 8824908b696278f34891d95c15e519710ea0d18d (patch) | |
tree | f08522791a6ec89b531317c5ad3b551cca9c3e74 /build.sh | |
parent | ba43db84ce7e80449c505c1381b33786cc047131 (diff) |
Setup font loading on linux
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="lib/SDL2" +lib_path="libs/SDL2 libs/freetype/libfreetype.so" link_opts="-L $lib_path -lSDL2" build_command="clang++ -std=c++11 -g -Og $include_opts $files $link_opts -o $build_opts" |