From 0e4af4b8807e781088f3b0b9d8c8e05b9008c1d1 Mon Sep 17 00:00:00 2001 From: Fabian Vogt Date: Mon, 22 Jan 2024 14:00:28 +0100 Subject: [PATCH] Register AutotoolsProject as handler for Makefiles again 95a3087a7b3 dropped the mime type registration by accident. Add it back to make the plugin functional again. Signed-off-by: Fabian Vogt Change-Id: I783429ce7883bad8b946ed1599098751d56cabad Reviewed-by: hjk Reviewed-by: Eike Ziller Reviewed-by: Qt CI Bot --- src/plugins/autotoolsprojectmanager/autotoolsprojectplugin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/autotoolsprojectmanager/autotoolsprojectplugin.cpp b/src/plugins/autotoolsprojectmanager/autotoolsprojectplugin.cpp index 7dd53126506..6a93f4b08d1 100644 --- a/src/plugins/autotoolsprojectmanager/autotoolsprojectplugin.cpp +++ b/src/plugins/autotoolsprojectmanager/autotoolsprojectplugin.cpp @@ -91,6 +91,7 @@ class AutotoolsProjectPlugin final : public ExtensionSystem::IPlugin void initialize() final { + ProjectManager::registerProjectType(Constants::MAKEFILE_MIMETYPE); d = std::make_unique(); }