Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove projects from qt creator

Tags:

qt

qt-creator

How to remove projects from qt creator, I can delete files from project view but I cant delete my .pro file and my main project folder.

like image 981
Amol Borkar Avatar asked Feb 10 '14 16:02

Amol Borkar


2 Answers

It's a littel dirty way, but go (on windows) into the AppData\Roaming\QtCreator.ini file and in [ProjectExplorer] remove the projects from:

  • RecentProjects\FileNames
  • RecentProjects\DisplayNames

On restarting QtCreator only your needed projects will displayed.

For Linux, edit ~/.config/QtProject/QtCreator.ini

like image 154
Andreas Avatar answered Oct 24 '22 17:10

Andreas


It's not possible to remove .pro files from QtCreator. There is an option as shown on screenshot, but it doesn't work.

enter image description here

You're not able to completely remove your project for QtCreator. For this you'll have to close project first and manually remove whole folder with .pro file. But to be serious no .pro file means no Qt project at all. qmake won't be able build project for you without it.

like image 2
Maxim Makhun Avatar answered Oct 24 '22 19:10

Maxim Makhun