How to create vc++ file from .pro file
General and Desktop
7
Posts
3
Posters
1.3k
Views
1
Watching
-
-
Hi,
Once you have setup your pro file properly, IIRC it's
@qmake -tp vc@
-
That means you need the opengl headers from the developer package of opengl. Or if you have installed that already you need to point your INCLUDEPATH in your pro file at the include directory for the opengl stuff.
Or maybe you didn't even intend to use opengl in which case you can try excluding it with QT -= opengl.
-
Yea that is because you don't have the opengl headers installed on your system or if you do Qt can't find them.
Do a forum search here for gl.h and you will find a lot of topics on this.