ImGui aborting program, giving "Mismatched version string!" error. #4622
Wyndfall
started this conversation in
Build/Link/Run/Fonts issues ONLY!
Replies: 1 comment 1 reply
-
That error typically indicates you're using one version for the ImGui headers and building against a different one. (IE: You're including the Dear ImGui 1.84 headers but you're building against 1.85 WIP.) If you check the value of Looking at your CMake script, it looks like you've manually hard-coded building the source files from |
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
-
Hi, I am trying to add imgui windows to a C++ project exported from SHADERed.
My code:
https://pastebin.com/AcFDyUhr
And my CMakeLists:
https://pastebin.com/eKHtipmy
The project builds and opens a window, but gives a Debug Error saying abort() has been called, and gives the error:
Assertion failed: strcmp(version, "1.85 WIP") == 0 && "Mismatched version string!", file C:\dev\vcpkg\packages\imgui_x86-windows\imgui.cpp, line 7254
In the console.
I'd really appreciate any help fixing this, thanks.
Beta Was this translation helpful? Give feedback.
All reactions