2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2016-01-15 14:57:40 +01:00
|
|
|
|
2016-01-27 10:14:00 +01:00
|
|
|
#pragma once
|
2014-03-11 16:08:08 +01:00
|
|
|
|
|
|
|
|
#include <coreplugin/dialogs/ioptionspage.h>
|
|
|
|
|
|
2022-09-27 10:09:29 +02:00
|
|
|
namespace CMakeProjectManager::Internal {
|
2014-03-11 16:08:08 +01:00
|
|
|
|
2020-01-27 08:58:38 +01:00
|
|
|
class CMakeSettingsPage final : public Core::IOptionsPage
|
2014-03-11 16:08:08 +01:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
CMakeSettingsPage();
|
|
|
|
|
};
|
|
|
|
|
|
2022-09-27 10:09:29 +02:00
|
|
|
} // CMakeProjectManager::Internal
|