Files
qt-creator/src/plugins/mesonprojectmanager/settings.h
hjk c2fcd17e91 Meson: Simplify settings setup a bit
Also some surrounding code.

Change-Id: I9f537a4357ab76295b7cb4f6a69749a0a6b55392
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
2023-05-30 11:23:42 +00:00

24 lines
482 B
C++

// 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::Internal {
class Settings : public Core::PagedSettings
{
public:
Settings();
Utils::BoolAspect autorunMeson{this};
Utils::BoolAspect verboseNinja{this};
};
Settings &settings();
} // MesonProjectManager::Internal