Sebastian Dusza
Sebastian Dusza

Reputation: 2528

QtCreator importing makefile projects

have You ever tried to import classic c++/make project into QtCreator ?

Lets say I wanted to use in my gui project some library that needs to be build. How can I do this ?

Upvotes: 7

Views: 8272

Answers (2)

kay
kay

Reputation: 308

Just for anyone who comes by here... it nowadays is easily possible, to open an existing project in QtCreator, see: another SO thread

Upvotes: 1

Alex
Alex

Reputation: 1345

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

So convert to cmake and you can import the project into Qt Creator (Welcome tab -> Open Project...).

Alex

Upvotes: 6

Related Questions