QtCreator imports makefile projects

Have you ever tried to import a classic C ++ / make project into QtCreator?

Suppose I wanted to use some library in my gui project that needs to be built. How can i do this?

+7
qt-creator
source share
2 answers

In Qt Creator 2.0.1, you can import projects only with: * .cmake, * .creator, * .pro or * .qmlproject.

So, convert to cmake, and you can import the project into Qt Creator (tab Welcome β†’ Open Project ...).

Alex

+6
source share

Just for those who come here ... now it’s easy to open an existing project in QtCreator, see: another SO thread

0
source share

All Articles