2014-03-11 11:30:14 +01:00
|
|
|
import qbs 1.0
|
2013-01-14 23:11:10 +04:00
|
|
|
|
|
|
|
|
QtcPlugin {
|
2019-07-15 12:50:29 +02:00
|
|
|
name: "Python"
|
2013-01-14 23:11:10 +04:00
|
|
|
|
2013-03-08 17:34:27 +01:00
|
|
|
Depends { name: "Qt.widgets" }
|
2014-02-10 13:02:33 +01:00
|
|
|
Depends { name: "Utils" }
|
|
|
|
|
|
2013-01-14 23:11:10 +04:00
|
|
|
Depends { name: "Core" }
|
|
|
|
|
Depends { name: "TextEditor" }
|
2013-05-06 16:07:25 +02:00
|
|
|
Depends { name: "ProjectExplorer" }
|
2013-01-14 23:11:10 +04:00
|
|
|
|
2013-07-30 18:00:27 +02:00
|
|
|
Group {
|
|
|
|
|
name: "General"
|
|
|
|
|
files: [
|
2019-07-05 09:40:31 +02:00
|
|
|
"python.qrc",
|
2019-07-22 14:39:01 +02:00
|
|
|
"pythoneditor.cpp",
|
|
|
|
|
"pythoneditor.h",
|
2019-07-15 12:50:29 +02:00
|
|
|
"pythonconstants.h",
|
2019-07-22 14:39:01 +02:00
|
|
|
"pythonplugin.cpp",
|
|
|
|
|
"pythonplugin.h",
|
|
|
|
|
"pythonhighlighter.h",
|
|
|
|
|
"pythonhighlighter.cpp",
|
|
|
|
|
"pythonindenter.cpp",
|
|
|
|
|
"pythonindenter.h",
|
2016-08-03 00:07:44 +02:00
|
|
|
"pythonformattoken.h",
|
2019-07-22 14:39:01 +02:00
|
|
|
"pythonproject.cpp",
|
|
|
|
|
"pythonproject.h",
|
|
|
|
|
"pythonrunconfiguration.cpp",
|
|
|
|
|
"pythonrunconfiguration.h",
|
|
|
|
|
"pythonscanner.h",
|
|
|
|
|
"pythonscanner.cpp",
|
|
|
|
|
"pythonsettings.cpp",
|
|
|
|
|
"pythonsettings.h",
|
2013-07-30 18:00:27 +02:00
|
|
|
]
|
|
|
|
|
}
|
2013-01-14 23:11:10 +04:00
|
|
|
}
|