windy icon indicating copy to clipboard operation
windy copied to clipboard

I don't get it.

Open gakun17 opened this issue 6 months ago • 1 comments

Being a new user for Linux is seriously a nightmare. Every customization that requires "building" always results in errors.

this is why you make things easier.txt

gakun17 avatar Jul 03 '25 20:07 gakun17

Hi @gakun17, I'm sorry you're going through this, but with time you'll learn to work around these issues, hang in there =), things will get better.

Regarding your issue, Windy depends on two libraries: SDL3 and SDL3_ttf. If these libraries don't exist on your system, CMake will try to download them, which is what happened according to the .txt file you attached.

The problem is that SDL3_ttf depends on FreeType (for rendering TTF fonts), and your system apparently doesn't have this library.

To install it, just do something like: Debian-based: sudo apt install libfreetype-dev Fedora: sudo dnf install freetype-devel RHEL-based: sudo yum install freetype-devel Arch Linux: sudo pacman -S freetype2 ...

Theldus avatar Jul 17 '25 01:07 Theldus