Simplicity
Simplicity

Reputation: 48986

Qt - qmake -project, qmake, what next?

I have a Qt program. When I ran qmake -project and qmake it worked fine.

But, how can I run my program now?

Thanks.

Upvotes: 0

Views: 992

Answers (2)

user647445
user647445

Reputation: 1327

qmake only makes a make file, so then you need to build it. i.e. 'make' or 'gmake' or VS or whatever

Upvotes: 1

liaK
liaK

Reputation: 11648

make it, if you are using it in Linux. Use nmake if you are using it in Windows with MSVC, or mingw32-make if you are using the Qt SDK for Windows without MSVC.

Upvotes: 5

Related Questions