forked from qt-creator/qt-creator
McuSupport: Remove Engineering packages/targets
The resulting kits are at the moment not functional. They will be revamped as soon as the new QUL 1.1 package structure is in place, the plugin is able to parse the upcoming meta data and when I am understanding how exactly an engineering kit needs to look like. Change-Id: If21bc6f5301369e4bba077faad32d934c04409a2 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -388,12 +388,8 @@ McuSupportOptions::McuSupportOptions(QObject *parent)
|
||||
|
||||
auto stmEvalPackages = {
|
||||
armGccPackage, stm32CubeProgrammerPackage, qtForMCUsSdkPackage};
|
||||
auto stmEngPackages = {
|
||||
armGccPackage, stm32CubeFwF7SdkPackage, stm32CubeProgrammerPackage, qtForMCUsSdkPackage};
|
||||
auto nxpEvalPackages = {
|
||||
armGccPackage, seggerJLinkPackage, qtForMCUsSdkPackage};
|
||||
auto nxpEngPackages = {
|
||||
armGccPackage, evkbImxrt1050SdkPackage, seggerJLinkPackage, qtForMCUsSdkPackage};
|
||||
auto desktopPackages = {
|
||||
qtForMCUsSdkPackage};
|
||||
packages = {
|
||||
@@ -419,17 +415,11 @@ McuSupportOptions::McuSupportOptions(QObject *parent)
|
||||
mcuTarget->setToolChainFile("CMake/stm32f769i-discovery.cmake");
|
||||
mcuTargets.append(mcuTarget);
|
||||
|
||||
mcuTarget = new McuTarget(vendorStm, "Engineering", stmEngPackages);
|
||||
mcuTargets.append(mcuTarget);
|
||||
|
||||
// NXP
|
||||
mcuTarget = new McuTarget(vendorNxp, "evkbimxrt1050", nxpEvalPackages);
|
||||
mcuTarget->setToolChainFile("CMake/evkbimxrt1050-toolchain.cmake");
|
||||
mcuTargets.append(mcuTarget);
|
||||
|
||||
mcuTarget = new McuTarget(vendorNxp, "Engineering", nxpEngPackages);
|
||||
mcuTargets.append(mcuTarget);
|
||||
|
||||
// Desktop
|
||||
mcuTarget = new McuTarget(vendorQt, "Desktop", desktopPackages);
|
||||
mcuTarget->setQulPlatform("Qt");
|
||||
|
Reference in New Issue
Block a user