-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support static linking against FreeType #12
Comments
+1 |
Are there any other |
openssl-sys uses static or dynamic linking depending on the target, but it could be done based on other configuration info instead: |
I imagine we'd default to static, and switch dynamic if that wasn't available or if |
Statically linking by default is fine for me. |
This is still relevant? |
I believe so. |
Static linking should just work fine already on Windows if you have a static version of freetype and specify that as the library name instead of the dynamic version. |
Static linking against FreeType is possible, and FreeType supplies a static form,
libfreetype.a
. It should be possible to link against this instead of the dynamic library.The text was updated successfully, but these errors were encountered: