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?
|
|
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
in folder1/include.pri
etc |
|||||||||||
|
|
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. |
|||
|
|
|
It only seems to be impossible to create sub-directories in QT-CREATOR. Try the following:
... QT-CREATOR displays only such folders which contain files that are written with their names into the *.pro or a *.pri file. At root level QT-CREATOR distinguishes between HEADERS, SOURCES, FORMS and OTHER FILES. Within these root folders you can find project-own subfolders, repeatedly. (Not covered in this text is splitting into sub-projects.) |
||||
|
|
|
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. |
|||
|
|
