vote up 0 vote down star

I'm having some trouble installing and configuring qt on my vista laptop.

I'm trying to setup a development environment on my laptop where I compile from the command line, because that's how the environment is setup on my university's linux machines, so I don't want to tie myself to some IDE .. (plus, real programmers use the command line!)

I haven't used the command line before for C++ development, it was all MSVC, so now I'm having a bit of trouble.

I'm still using MSVC, but from the command line. I practically have no idea what's going on, I just know that I have to run:

qmake
nmake

to compile my code!

I downloaded the opensource version of qt, and did the configuration, and tried a simple qt application (from a tutorial) and it worked, it compiled and executed pretty much as expected.

Now, when I decided to run another project that uses opengl, I got the following error:

fatal error C1083: Cannot open include file: 'qgl.h': No such file 
or directory

I'm not sure where does the compiler look for header files, and I didn't copy any header files anywhere, I assume that configure.exe worked its magic somehow and added the include directory to one or more enviroment variables or to some registery location or whatever other peculier places that the MSVC compiler searches for to find include directories.

However, what I did was search my C:\qt\include\ folder to make sure that qgl.h exists, and sure enough there it was. so why can't nmake find it?

flag

74% accept rate

5 Answers

vote up 1 vote down check

If you want to stay with the command line anyway (plus use it on a linux box later / parallel) I'd suggest at least trying out the MinGW version of Qt. I'm using it regularly, and besides of the non-existance of a GUI it works pretty well. Using MinGW also has the advantage that you can simply download and install the MinGW edition of Qt and don't need to reconfigure or recompile anything.

Also, trying out QtCreator might be interesting. It's still beta and requires the beta Qt 4.5 but it's a nice small IDE that integrates nicely with gcc.

link|flag
hmm using mingw sounds like a good idea, I'll give it a try, thanks – hasen j Feb 2 at 0:16
To nitpick, this doesn't answer the question, it just provides a workaround. – Max Howell Feb 3 at 16:54
yea well, as long as it solves my problem, – hasen j Feb 3 at 21:26
vote up 2 vote down

I think the actual solution to this is in your pro file:

QT += opengl

link|flag
Yea, this only solves the problem of the linker not finding the opengl staticlibrary, but it doesn't solve the header file problem, I switched to mingw and added opengl to CONFIG and it worked – hasen j Feb 3 at 14:47
The Qt line modifies the INCLUDEPATH too, so it should work. But this stuff always has multiple factors at play. – Max Howell Feb 3 at 16:54
but actually qgl.h was in the default include folder from the start (for me anyway), but it containted one line only #include `"../QtOpengl/qgl.h"` or something similar – hasen j Feb 3 at 21:28
vote up 1 vote down

Two potential solutions (they solved issues at my workplace)

Do you have qt include and bin folders in the PATH variable? I think the doc says only one of these is needed, but one of the students had Vista and putting the other in the PATH variable solved a "Cannot open include file" problem.

If you're using MSVC did you run configure and nmake from the Visual Studio command prompt? We had problems when using the bare windows Command Prompt because the VS one adds a lot of temporary environment variables to the configure process.

Good luck

link|flag
yea I used the Visual Studio command prompt, I added the bin to PATH (that's pretty much a given) but I also had to add lib to PATH as well, (for dll's), now gonna try to add include too, man what a mess. – hasen j Feb 2 at 0:04
vote up 0 vote down

Qmake generates Makefile from *.pro file located in current directory. It has qt path compiled in. Type "qmake -v" to see it. You can't move qt's dir after compiling it. If You haven't moved it, first maybe try to install Qt following instruction from INSTALL file. Good luck.

link|flag
vote up 0 vote down

The opensource version of Qt does not provide profiles (mkspecs in qt terms) so qmake can generate nmake (msvc) compatible makefiles.

You have to use mingw/gcc.

link|flag
This is no longer true IIRC. – Max Howell Feb 3 at 14:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.