2019-08-14 11:48:13 +02:00
|
|
|
import qbs 1.0
|
|
|
|
|
|
|
|
|
|
QtcPlugin {
|
|
|
|
|
name: "McuSupport"
|
|
|
|
|
|
|
|
|
|
Depends { name: "Qt.core" }
|
|
|
|
|
Depends { name: "Qt.widgets" }
|
|
|
|
|
Depends { name: "Utils" }
|
|
|
|
|
|
|
|
|
|
Depends { name: "Core" }
|
2020-11-20 18:01:40 +01:00
|
|
|
Depends { name: "BareMetal" }
|
2019-08-14 11:48:13 +02:00
|
|
|
Depends { name: "ProjectExplorer" }
|
2019-10-18 12:04:43 +02:00
|
|
|
Depends { name: "Debugger" }
|
2019-08-14 11:48:13 +02:00
|
|
|
Depends { name: "CMakeProjectManager" }
|
2020-04-02 19:31:52 +02:00
|
|
|
Depends { name: "QtSupport" }
|
2019-08-14 11:48:13 +02:00
|
|
|
|
|
|
|
|
files: [
|
|
|
|
|
"mcusupport.qrc",
|
|
|
|
|
"mcusupport_global.h",
|
|
|
|
|
"mcusupportconstants.h",
|
|
|
|
|
"mcusupportdevice.cpp",
|
|
|
|
|
"mcusupportdevice.h",
|
2019-10-22 14:33:31 +02:00
|
|
|
"mcusupportoptions.cpp",
|
|
|
|
|
"mcusupportoptions.h",
|
2019-08-14 11:48:13 +02:00
|
|
|
"mcusupportoptionspage.cpp",
|
|
|
|
|
"mcusupportoptionspage.h",
|
|
|
|
|
"mcusupportplugin.cpp",
|
|
|
|
|
"mcusupportplugin.h",
|
2020-03-12 14:25:49 +01:00
|
|
|
"mcusupportsdk.cpp",
|
|
|
|
|
"mcusupportsdk.h",
|
2019-08-14 11:48:13 +02:00
|
|
|
"mcusupportrunconfiguration.cpp",
|
|
|
|
|
"mcusupportrunconfiguration.h",
|
2021-02-15 16:20:38 +01:00
|
|
|
"mcusupportversiondetection.cpp",
|
|
|
|
|
"mcusupportversiondetection.h",
|
2021-09-29 17:23:11 +02:00
|
|
|
"mcusupportcmakemapper.h",
|
|
|
|
|
"mcusupportcmakemapper.cpp"
|
2019-08-14 11:48:13 +02:00
|
|
|
]
|
|
|
|
|
}
|