blob: 36d30959d5a4b6a7673192563b582edc63fb0282 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// 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 <utils/aspects.h>
namespace MesonProjectManager::Internal {
class MesonSettings final : public Utils::AspectContainer
{
public:
MesonSettings();
Utils::BoolAspect autorunMeson{this};
Utils::BoolAspect verboseBuild{this};
};
MesonSettings &settings();
} // MesonProjectManager::Internal
|