Srinath G S
Srinath G S

Reputation: 155

How to configure Qt Creator to work for a normal c++ project?

I'm new to using Qt Creator. All I wanted to do is write a plain c++ code and use GNU build utilities to build and run as I wont be using Qt library at all. Please help.

Upvotes: 2

Views: 3352

Answers (2)

Szabolcs
Szabolcs

Reputation: 25703

I was looking at this just the other day.

You can write CONFIG -= qt in the .pro file. Also, if you need, you can set up the precise build steps (e.g. running make) in the project settings.

The new version 2.4 (still beta) has an option to create a "plain C++" project. This also uses the CONFIG -= qt setting.

Upvotes: 3

Lol4t0
Lol4t0

Reputation: 12547

You can turn off Qt in your pro file: just write QT = (nothing) there. You can remove qmake stage from your project build settings and write your own Makefile.

Also, I see no reason to use qtcreator then.

Upvotes: 0

Related Questions