For some reason I have to build Qt from source. So I read the docs and README and did a configure-make. The configuration was fine, but after using make, I first got an error of missing headers like "gl2.h" and "khr***.h", and I solved it by searching for these headers in the 'qtbase' folder and copying these into the 'include' folder of mingw. But later I got
g++: error: C:\qt5\qtbase\lib\liblibEGL.a: No such file or directory
g++: error: C:\qt5\qtbase\lib\liblibGLESv2.a: No such file or directory
But I can't tell how to solve it. I guess these should've been compiled from some cpp files but they weren't.
Anyone has any idea?