PDA

View Full Version : QT Developer?



Fatal
08-17-2007, 02:53 PM
Are there any QT developers around? I am looking for a program that will dump a QT resource file, such as RCCDump. I would use rccdump if i could find it, but apparently they decided not to release it with the opensource version of the QT devkit.


Any assistance would be appreciated

Snoochie
08-17-2007, 04:33 PM
http://lists.trolltech.com/qt4-preview-feedback/2005-01/msg00170.html

Fatal
08-17-2007, 05:15 PM
Yeah. I found that, also. Reading how to create a QT project at the moment. Really a pain in the ass for a simple file extractor.

Carpathian
08-18-2007, 08:38 AM
Creating a Qt project is pretty simple. All you need to do, from the terminal, is cd into your working directory, then run "qmake -project" (without the quotes). This will generate the pro project file, and will use any cpp/h/qt-ish files from the directory. Next run "qmake". This will create makefiles from the .pro file. And finally, use make as normal.