forked from qt-creator/qt-creator
This change introduces the registration of examples (or rather demos) of the Qt for MCUs SDK at the launch time of Qt Creator. This presumes that either the SDK installer set the Qt for MCUs SDK path (which is the default use-case) or that the user selected/changed the SDK path in a prior run of Qt Creator. Task-number: UL-1218 Change-Id: I6484d3e3065f501da4cd6faccfe02605003f6cbf Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
34 lines
840 B
QML
34 lines
840 B
QML
import qbs 1.0
|
|
|
|
QtcPlugin {
|
|
name: "McuSupport"
|
|
|
|
Depends { name: "Qt.core" }
|
|
Depends { name: "Qt.widgets" }
|
|
Depends { name: "Utils" }
|
|
|
|
Depends { name: "Core" }
|
|
Depends { name: "ProjectExplorer" }
|
|
Depends { name: "Debugger" }
|
|
Depends { name: "CMakeProjectManager" }
|
|
Depends { name: "QtSupport" }
|
|
|
|
files: [
|
|
"mcusupport.qrc",
|
|
"mcusupport_global.h",
|
|
"mcusupportconstants.h",
|
|
"mcusupportdevice.cpp",
|
|
"mcusupportdevice.h",
|
|
"mcusupportoptions.cpp",
|
|
"mcusupportoptions.h",
|
|
"mcusupportoptionspage.cpp",
|
|
"mcusupportoptionspage.h",
|
|
"mcusupportplugin.cpp",
|
|
"mcusupportplugin.h",
|
|
"mcusupportsdk.cpp",
|
|
"mcusupportsdk.h",
|
|
"mcusupportrunconfiguration.cpp",
|
|
"mcusupportrunconfiguration.h",
|
|
]
|
|
}
|