1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
import qbs.base 1.0
import QtcPlugin
QtcPlugin {
name: "PythonEditor"
Depends { name: "Qt.widgets" }
Depends { name: "Core" }
Depends { name: "TextEditor" }
Depends { name: "CppTools" }
Depends { name: "QtSupport" }
Depends { name: "ProjectExplorer" }
Group {
name: "General"
files: [
"pythoneditor.cpp", "pythoneditor.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",
"pythonhighlighterfactory.h", "pythonhighlighterfactory.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"
]
}
}
|