Dear visitor, welcome to QtForum.org. If this is your first visit here, please read the Help. It explains how this page works. You must be registered before you can use all the page's features. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
I can't build Release on Eclipse
Ok, I am using eclipse with QT on windows.
Last night I was building only the release config of my project.
I built the QT Debug Libraries via "QT 4.3.4 (Build Debug Libraries)"
Now when I build the project, only the debug config builds.
Any Ideas?
RE: I can't build Release on Eclipse
in the .pro file, set up 2 configurations. 1 for debug 1 for release. Then after you gen your makefile
you can type
make Debug or make Release.
RE: I can't build Release on Eclipse
Thanks KingMike
Got it working