I would like to divide my qt project into several directories, because it is growing pretty large. However, when I click in browser in qt-creator, there is no 'Add directory' and no such thing in 'Add new'. Can this be done somehow?

link|improve this question

What is wrong with creating a sub-directory with your file manager? – Ariya Hidayat Jul 24 '09 at 9:57
I can create dirs manually, but I don't see them then in project browser. – gruszczy Jul 24 '09 at 10:31
@Ariya You should have at least up voted this as this is a feature available in most IDEs and people will be asking about it. – Piotr Dobrogost Jul 24 '09 at 16:29
Ah, you mean you want to have the subdirectory appears like a tree format? – Ariya Hidayat Jul 24 '09 at 16:51
feedback

3 Answers

up vote 13 down vote accepted

One method you could use is to add a project include file for each sub directory.

Qt Creator displays these in the GUI in a nested fashion, and allows you to add files to them.

e.g.

in project.pro

include(folder1/include.pri)

in folder1/include.pri

HEADERS += MyClass.h
SOURCES += MyClass.cpp

etc

link|improve this answer
Can I do this nesting from the IDE or do I have to manually set those files and dirs? – gruszczy Jul 24 '09 at 12:19
1  
I had a quick look, and I think you have to add the include files manually, but when adding new files to a project Qt Creator will allow you to add them to an include file rather than the main project file. – Nick Jul 24 '09 at 12:30
1  
OK, hopefully they will add this feature in new version. – gruszczy Jul 24 '09 at 13:12
feedback

Starting from version 1.2.90 Qt Creator shows subfolders which exist in project's folder as branches in project's tree if only Filter tree option is not set to Simplify tree.

link|improve this answer
feedback

When my 'data' directory only had one sub-directory 'model' it just appeared as "data/model". After adding 'dao' as another sub-directory it displayed data with the traditional +/- manner to reveal model and dao.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.