forked from qt-creator/qt-creator
- Avoids the hassle of QRC files and manually registering mime types - Avoids performance regressions because of mime types that are registered after mime database has been used - Makes it technically possible to detect that a disabled plugin could handle a mime type if it was enabled Change-Id: I373008b1b56e9c6b4853055f20b3eeb112a6eff9 Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: hjk <hjk@qt.io>
35 lines
734 B
QML
35 lines
734 B
QML
import qbs 1.0
|
|
|
|
QtcPlugin {
|
|
name: "CVS"
|
|
|
|
Depends { name: "Qt.widgets" }
|
|
Depends { name: "Utils" }
|
|
|
|
Depends { name: "Core" }
|
|
Depends { name: "TextEditor" }
|
|
Depends { name: "VcsBase" }
|
|
|
|
files: [
|
|
"annotationhighlighter.cpp",
|
|
"annotationhighlighter.h",
|
|
"cvsclient.cpp",
|
|
"cvsclient.h",
|
|
"cvscontrol.cpp",
|
|
"cvscontrol.h",
|
|
"cvseditor.cpp",
|
|
"cvseditor.h",
|
|
"cvsplugin.cpp",
|
|
"cvsplugin.h",
|
|
"cvssettings.cpp",
|
|
"cvssettings.h",
|
|
"cvssubmiteditor.cpp",
|
|
"cvssubmiteditor.h",
|
|
"cvsutils.cpp",
|
|
"cvsutils.h",
|
|
"settingspage.cpp",
|
|
"settingspage.h",
|
|
"settingspage.ui",
|
|
]
|
|
}
|