aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/mesonprojectmanager/toolssettingspage.h
diff options
context:
space:
mode:
authorhjk <[email protected]>2022-10-06 16:58:18 +0200
committerhjk <[email protected]>2022-10-10 06:08:57 +0000
commit5e786d444db492222b878e2f1489348d8cdc8b41 (patch)
tree3294dff28df4dbc5d5f99e3ec261599ee4212121 /src/plugins/mesonprojectmanager/toolssettingspage.h
parent7c0c57fef9ad9c5057adb5c7f73c5c894ef644ff (diff)
Meson: Flatten directory hierarchy
Keep tests/ and icons/ but put the rest into the toplevel. The previous setup was so different from the rest of the bunch that it regularly stuck out in maintenance tasks. Change-Id: I69821be6268f69682353a388f6bb1fa343215303 Reviewed-by: Qt CI Bot <[email protected]> Reviewed-by: <[email protected]> Reviewed-by: Alessandro Portale <[email protected]>
Diffstat (limited to 'src/plugins/mesonprojectmanager/toolssettingspage.h')
-rw-r--r--src/plugins/mesonprojectmanager/toolssettingspage.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/plugins/mesonprojectmanager/toolssettingspage.h b/src/plugins/mesonprojectmanager/toolssettingspage.h
new file mode 100644
index 00000000000..c0f0a11fd84
--- /dev/null
+++ b/src/plugins/mesonprojectmanager/toolssettingspage.h
@@ -0,0 +1,24 @@
+// Copyright (C) 2020 Alexis Jeandet.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
+
+#pragma once
+
+#include <coreplugin/dialogs/ioptionspage.h>
+
+#include <QCoreApplication>
+
+namespace MesonProjectManager {
+namespace Internal {
+
+class MesonTools;
+
+class ToolsSettingsPage final : public Core::IOptionsPage
+{
+ Q_DECLARE_TR_FUNCTIONS(MesonProjectManager::Internal::ToolsSettingsPage)
+
+public:
+ ToolsSettingsPage();
+};
+
+} // namespace Internal
+} // namespace MesonProjectManager