Remove sdl3-ttf dependency

This commit is contained in:
JJ Bliss
2026-05-07 11:30:28 -04:00
parent c2d700f95d
commit 752102d0b6
3 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ all: build
clean: clean:
rm -rf build/* rm -rf build/*
LIBS != pkg-config --libs-only-l --libs-only-L sdl3 sdl3-image sdl3-ttf LIBS != pkg-config --libs-only-l --libs-only-L sdl3 sdl3-image
HARE_SOURCES != find . -name '*.ha' HARE_SOURCES != find . -name '*.ha'
-1
View File
@@ -6,7 +6,6 @@ Uxn/Varvara Emulator written in the hare programming language.
- hare - hare
- sdl3 - sdl3
- sdl3-image - sdl3-image
- sdl3-ttf
- [hare-sdl3](https://git.sr.ht/~sircmpwn/hare-sdl3) - [hare-sdl3](https://git.sr.ht/~sircmpwn/hare-sdl3)
To install hare-sdl3, the source must be copied into the HAREPATH third-party directory. To install hare-sdl3, the source must be copied into the HAREPATH third-party directory.
-1
View File
@@ -1,6 +1,5 @@
use sdl3; use sdl3;
use sdl3::image; use sdl3::image;
use sdl3::ttf;
use types::c; use types::c;
use os; use os;
use io; use io;