1
Graphics / Re: Using sf::Text and sf::Font in Windows ×64 MinGW
« on: May 31, 2023, 06:02:09 am »The linker error tells FreeType is not linked.
If you link SFML statically, then you need to link its dependencies too. FreeType is one of the dependencies.
See the list of dependencies for each SFML module here: https://www.sfml-dev.org/faq.php#build-link-static
They are also listed in this tutorial: https://www.sfml-dev.org/tutorials/2.5/start-vc.php
So if I linked dynamically, I wouldn't need to do anything regarding downloading/linking freetype?
The question becomes, should I even link staticaly?