Build error with vcpkg #1834
-
I am building the Ver. 3.2 with vcpkg. There is a fatal error with imgui. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
Do you have glew:x64-windows installed? GL3W isn't supported right now. Thank you |
Beta Was this translation helpful? Give feedback.
-
Thanks a lot. |
Beta Was this translation helpful? Give feedback.
-
Like Paul said, if you are trying to build the imgui applications you need glew installed and it needs to be found by cmake. You can do that with vcpkg install glew:x64-windows. That error indicates that no opengl loader was found by imgui and it's trying to default to the gl3w loader which isn't actually included in our imgui source tree. |
Beta Was this translation helpful? Give feedback.
-
Glew has already been installed, but the error still exists. |
Beta Was this translation helpful? Give feedback.
Like Paul said, if you are trying to build the imgui applications you need glew installed and it needs to be found by cmake. You can do that with vcpkg install glew:x64-windows.
That error indicates that no opengl loader was found by imgui and it's trying to default to the gl3w loader which isn't actually included in our imgui source tree.