Perf: White-list supported device types

It's not supported on QNX, so we should not try to use it.

Change-Id: I73bbbf2e7f9b4a197094da283d72503d06ce0544
Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
This commit is contained in:
hjk
2025-02-17 12:58:49 +01:00
parent 5c9d886510
commit 1ac6bc27a6

View File

@@ -163,6 +163,10 @@ public:
return perfParserWorker; return perfParserWorker;
}); });
addSupportedRunMode(ProjectExplorer::Constants::PERFPROFILER_RUN_MODE); addSupportedRunMode(ProjectExplorer::Constants::PERFPROFILER_RUN_MODE);
addSupportForLocalRunConfigs();
addSupportedDeviceType(RemoteLinux::Constants::GenericLinuxOsType);
addSupportedDeviceType(ProjectExplorer::Constants::DESKTOP_DEVICE_TYPE);
addSupportedDeviceType("DockerDeviceType");
} }
}; };