ImGuiFreeType::BuildFontAtlas linking error only in release mode #4720
Ou7law007
started this conversation in
Build/Link/Run/Fonts issues ONLY!
Replies: 4 comments 9 replies
-
When you edit project options in Visual Studio by default it only affects the active configuration/platform. Are you sure you configured the linker correctly for the release configuration? |
Beta Was this translation helpful? Give feedback.
1 reply
-
Either way the issue is you are not successfully linking Freetype in your project so its not a dear imgui issue, but an issue with your build/VS setup.
|
Beta Was this translation helpful? Give feedback.
1 reply
-
It seems like ImGui doesn't support static-freetype. The docs don't mention it either! |
Beta Was this translation helpful? Give feedback.
6 replies
-
You shouldn’t have to do that though, it probably works for you as it is undoing the opposite setting from your project.
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
ImGui Docking v1.86 WIP
Freetype installed using vcpkg.
Both imgui_freetype.h and imgui_freetype.cpp are included in my build.
Calling ImGuiFreeType::BuildFontAtlas() causes the following errors in both x86 and x64 (only in Release mode). The same exact code works in both x86 and x64 in Debug mode
I've been trying with this for a couple of days with no success. I tried building Freetype on my own using
from https://download.savannah.gnu.org/releases/freetype/, no success.Beta Was this translation helpful? Give feedback.
All reactions