You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not really sure how I can contribute to the source code, so I'm posting it here.
I was trying to build glui using msbuild CLI.
I first generated glui.sln using cmake command.
I then issued msbuild glui.sln, but got the error complaining about errors in gl.h from windows sdk.
As a solution, I added #include <windows.h> right before inclusion of GL/gl.h, but I got another error indicating that I needed to define NOMINMAX for some reason. Setting such macro seemed to have solved the problem, and I successfully got resulting library.
Should I make a diff file so that someone with the right access to this repository can apply it?
The text was updated successfully, but these errors were encountered:
I'm not really sure how I can contribute to the source code, so I'm posting it here.
I was trying to build glui using msbuild CLI.
I first generated glui.sln using cmake command.
I then issued msbuild glui.sln, but got the error complaining about errors in gl.h from windows sdk.
As a solution, I added #include <windows.h> right before inclusion of GL/gl.h, but I got another error indicating that I needed to define NOMINMAX for some reason. Setting such macro seemed to have solved the problem, and I successfully got resulting library.
Should I make a diff file so that someone with the right access to this repository can apply it?
The text was updated successfully, but these errors were encountered: