blob: a9e9214da85235f88be0de3a2c94a4a5792b8aca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "perfprofilerconstants.h"
#include "perfprofilertr.h"
#include "perfrunconfigurationaspect.h"
#include "perfsettings.h"
#include <projectexplorer/buildconfiguration.h>
using namespace ProjectExplorer;
namespace PerfProfiler::Internal {
PerfRunConfigurationAspect::PerfRunConfigurationAspect(BuildConfiguration *bc)
{
setProjectSettings(new PerfSettings(bc->target()));
setGlobalSettings(&PerfProfiler::globalSettings(), Constants::PerfSettingsId);
setId(Constants::PerfSettingsId);
setDisplayName(Tr::tr("Performance Analyzer Settings"));
setUsingGlobalSettings(true);
resetProjectToGlobalSettings();
setConfigWidgetCreator([this] { return createRunConfigAspectWidget(this); });
}
} // PerfProfiler::Internal
|