forked from qt-creator/qt-creator
Qbs project files: Use groups wherever applicable.
Provides better structuring of source files. Change-Id: Ic2d0094312bb7c8da01a1f38270564407fdbefce Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
This commit is contained in:
@@ -12,36 +12,41 @@ QtcPlugin {
|
||||
Depends { name: "QtSupport" }
|
||||
Depends { name: "ProjectExplorer" }
|
||||
|
||||
files: [
|
||||
"pythoneditor.cpp",
|
||||
"pythoneditor.h",
|
||||
"pythoneditor_global.h",
|
||||
"pythoneditorconstants.h",
|
||||
"pythoneditorfactory.cpp",
|
||||
"pythoneditorfactory.h",
|
||||
"pythoneditorplugin.cpp",
|
||||
"pythoneditorplugin.h",
|
||||
"pythoneditorplugin.qrc",
|
||||
"pythoneditorwidget.cpp",
|
||||
"pythoneditorwidget.h",
|
||||
"tools/lexical/sourcecodestream.h",
|
||||
"tools/lexical/pythonscanner.h",
|
||||
"tools/lexical/pythonformattoken.h",
|
||||
"tools/lexical/pythonscanner.cpp",
|
||||
"tools/pythonhighlighter.h",
|
||||
"tools/pythonindenter.cpp",
|
||||
"tools/pythonhighlighter.cpp",
|
||||
"tools/pythonindenter.h",
|
||||
"wizard/pythonfilewizard.h",
|
||||
"wizard/pythonfilewizard.cpp",
|
||||
"wizard/pythonclasswizard.h",
|
||||
"wizard/pythonclassnamepage.h",
|
||||
"wizard/pythonclasswizarddialog.h",
|
||||
"wizard/pythonsourcegenerator.h",
|
||||
"wizard/pythonclasswizarddialog.cpp",
|
||||
"wizard/pythonclasswizard.cpp",
|
||||
"wizard/pythonclassnamepage.cpp",
|
||||
"wizard/pythonsourcegenerator.cpp"
|
||||
]
|
||||
Group {
|
||||
name: "General"
|
||||
files: [
|
||||
"pythoneditor.cpp", "pythoneditor.h",
|
||||
"pythoneditor_global.h",
|
||||
"pythoneditorconstants.h",
|
||||
"pythoneditorfactory.cpp", "pythoneditorfactory.h",
|
||||
"pythoneditorplugin.cpp", "pythoneditorplugin.h",
|
||||
"pythoneditorplugin.qrc",
|
||||
"pythoneditorwidget.cpp", "pythoneditorwidget.h",
|
||||
]
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "Tools"
|
||||
prefix: "tools/"
|
||||
files: [
|
||||
"lexical/pythonformattoken.h",
|
||||
"lexical/pythonscanner.h", "lexical/pythonscanner.cpp",
|
||||
"lexical/sourcecodestream.h",
|
||||
"pythonhighlighter.h", "pythonhighlighter.cpp",
|
||||
"pythonindenter.cpp", "pythonindenter.h"
|
||||
]
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "Wizard"
|
||||
prefix: "wizard/"
|
||||
files: [
|
||||
"pythonclassnamepage.cpp", "pythonclassnamepage.h",
|
||||
"pythonclasswizard.h", "pythonclasswizard.cpp",
|
||||
"pythonclasswizarddialog.h", "pythonclasswizarddialog.cpp",
|
||||
"pythonfilewizard.h", "pythonfilewizard.cpp",
|
||||
"pythonsourcegenerator.h", "pythonsourcegenerator.cpp"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user