Reputation: 63
I'm looking for the best IDE for C++
and found Qt
is the best approach anyway.
Can I use Qt Creator
as an IDE for C++
? Obviously this is my learning time and would learn to create GUIs and user interfaces with C++
in future.
Thanks.
Upvotes: 2
Views: 1345
Reputation: 2724
Sure, you can. Here below I show you the screenshot of QtCreator's "New project" form:
As you can see you can easily select to create a standard "C++" project (making use of qmake
) or also a standard "C++" project (making use of cmake
).
Your plain C++ project can be a simple console application (making use of cin
and cout
for example).
Upvotes: 4