[Qt-creator] Using QtCreator as a general C++ IDE
Charles N Burns
charlesnburns at gmail.com
Thu Feb 25 02:53:37 CET 2010
Try:
- Make a new project
- Choose "Qt console application"
- Uncheck all Qt features
- You will get a default main.cpp with some Qt stuff. You can remove
all the Qt stuff. The following main.cpp works fine:
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
cout << "Hello, Vanilla C++" << endl;
getchar(); //pause
return 0;
}
I'd agree that Qt Creator could do with an explicit non-Qt project type.
--Charles Burns
On Wed, Feb 24, 2010 at 6:22 PM, Jefferson Bandeira <jbsilva at ufrj.br> wrote:
>
> Hello trolls =)
> Is there a way to use QtCreator as a General Purpose IDE, instead of a Qt Only IDE... I like most of the features of code completion and browsing this IDE offers, and i really would like to use it as my main IDE, however i can't find a way to use it to anything other than creating Qt Apps.
> So, the question : Is it possible? If so, how?
> Thanks for your time, i'll wait for answers. =)
> --
> Jefferson Bandeira
>
>
> _______________________________________________
> Qt-creator mailing list
> Qt-creator at trolltech.com
> http://lists.trolltech.com/mailman/listinfo/qt-creator
>
--
"Be who you are and say what you feel, because those who mind don't
matter and those who matter don't mind." --Dr. Seuss
More information about the Qt-creator-old
mailing list