Take a timeout! What are your other options? java? wxWidgets?
If you can spare it, and have experience with Visual Studio, get the commercial edition of Qt w/ the VS integration, it'll be wayyyy easier to use.
Printable View
Take a timeout! What are your other options? java? wxWidgets?
If you can spare it, and have experience with Visual Studio, get the commercial edition of Qt w/ the VS integration, it'll be wayyyy easier to use.
If you want to build those plugins you must tell Qt where it can find proper libraries. For example like this:(where C:\Postgres is a directory where PostgreSQL libraries were installed).Quote:
configure -plugin-sql-psql -I C:\Postgres\include -L C:\Postgres\lib
make
Everything is explained here: http://doc.trolltech.com/4.2/sql-dri...-7-3-and-above
Note also that you can compile those plugins later (just remember that you shouldn't use paths with spaces).
But you're making a lot of progress. Now you have a working toolchain and you got past that problem with moc compilation.
This is true, however now qmake doesn't work. Before qmake worked to make the Makefile but minwg-32-make didn't now things are reversed and minwg-32-make works and qmake doesen't. So I can't even build the drivers.
Quick check of executables follows:
C:\Qt\projects\helloWorld>qmake
'qmake' is not recognized as an internal or external command,
operable program or batch file.
C:\Qt\projects\helloWorld>mingw32-make
mingw32-make: *** No targets specified and no makefile found. Stop.
To answer your question, no. However when I added "C:\QT\4.2.1\bin" to the path, run qmake and mingw32 I actually get an executable. "hello.exe" However when I run the executable I get several errors resulting in 'can find *.dll'. I tried moving the EXE to the QT directory, which is in the PATH, but I get the same errors. But, at least I'm creating an exe now. So there is now a dim light at the end of this very long tunnel.
Thanks for sticking with me!
Now I'm really getting somewhere. I have an working exe .
If you remember you had me to rerun Configure without any parameters. Do I dare run it again with the desired parameters?