Jack
Jack

Reputation: 16724

How do I run clean from qmake?

How do I run clean (as right click on my project name -> clean) from qmake? Is a binary utility that does the clean? I'd like to run this on release, somethig like:

CONFIG(release, debug|release): clean project

Upvotes: 1

Views: 13373

Answers (1)

mhaseeb
mhaseeb

Reputation: 11

I had worked on Qt vizkit widgets for Robotics Construction Kit (ROCK) software.

When I need to clean the project from the terminal, I go to the build folder and I use this command:

make clean

Upvotes: 1

Related Questions