Reputation: 48986
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
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