SFML community forums
Help => General => Topic started by: JasonLeon on October 24, 2023, 11:29:05 am
-
The dll that SFML project needs is kind of large. openal32, sfml-audio-d-2, sfml-graphics-d-2, sfml-network-d-2, sfml-system-d-2, sfml-window-d-2, six dlls are totally 13.7 MB.
Besides, font file is approximately 20MB, can sf::Font load from system fonts?
I'm using CLion, by the way.
-
You can link SFML statically, that way all the needed symbols will be included in your executable. The only exception is OpenAL due to licensing reasons, it will have to remain as DLL.
SFML doesn't provide any facilities to access system fonts, as that wouldn't really work cross-platform, but if you know the path, you should be able to just point to the path and load from there.