forked from qt-creator/qt-creator
22 lines
373 B
QML
22 lines
373 B
QML
|
|
import qbs 1.0
|
||
|
|
|
||
|
|
QtcPlugin {
|
||
|
|
name: "Docker"
|
||
|
|
|
||
|
|
Depends { name: "Qt.widgets" }
|
||
|
|
Depends { name: "Utils" }
|
||
|
|
|
||
|
|
Depends { name: "Core" }
|
||
|
|
Depends { name: "ProjectExplorer" }
|
||
|
|
|
||
|
|
files: [
|
||
|
|
"docker_global.h",
|
||
|
|
"dockerconstants.h",
|
||
|
|
"dockerplugin.h",
|
||
|
|
"dockerplugin.cpp",
|
||
|
|
"dockersettings.h",
|
||
|
|
"dockersettings.cpp"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
|