Details
-
Bug
-
Resolution: Fixed
-
P1: Critical
-
Qt Creator 17.0.0-beta1
-
None
-
b50e6f57c (17.0)
Description
Trying to open a project which looks for optional Qt6 components with OPTIONAL_COMPONENTS brings up the MaintenanceTool.
This is due to maintenance_tool_provider treating OPTIONAL_COMPONENTS keyword as a (missing) Qt module.
Example project:
cmake_minimum_required(VERSION 3.19) project(tst_optional_components LANGUAGES CXX) find_package(Qt6 6.5 REQUIRED COMPONENTS Core OPTIONAL_COMPONENTS Pdf) qt_standard_project_setup() qt_add_executable(tst_optional_components main.cpp )