2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2020 Alexis Jeandet.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2020-05-01 18:20:56 +02:00
|
|
|
|
|
|
|
|
#include "toolssettingspage.h"
|
2020-10-29 10:20:14 +01:00
|
|
|
|
|
|
|
|
#include "mesonpluginconstants.h"
|
2022-10-10 09:14:04 +02:00
|
|
|
#include "mesonprojectmanagertr.h"
|
2020-05-01 18:20:56 +02:00
|
|
|
#include "toolssettingswidget.h"
|
|
|
|
|
|
|
|
|
|
namespace MesonProjectManager {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
ToolsSettingsPage::ToolsSettingsPage()
|
|
|
|
|
{
|
|
|
|
|
setId(Constants::SettingsPage::TOOLS_ID);
|
2022-10-10 09:14:04 +02:00
|
|
|
setDisplayName(Tr::tr("Tools"));
|
2020-05-01 18:20:56 +02:00
|
|
|
setCategory(Constants::SettingsPage::CATEGORY);
|
|
|
|
|
setWidgetCreator([]() { return new ToolsSettingsWidget; });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace MesonProjectManager
|