blob: 2e23d0f44822dbb4ab91226c1d049343aa4a825b (
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
27
28
29
30
31
|
// Copyright (C) 2020 Alexis Jeandet.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <coreplugin/dialogs/ioptionspage.h>
#include <utils/aspects.h>
namespace MesonProjectManager {
namespace Internal {
class Settings : public Utils::AspectContainer
{
public:
Settings();
static Settings *instance();
Utils::BoolAspect autorunMeson;
Utils::BoolAspect verboseNinja;
};
class GeneralSettingsPage final : public Core::IOptionsPage
{
public:
GeneralSettingsPage();
};
} // namespace Internal
} // namespace MesonProjectManager
|