Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P3: Somewhat important
-
Resolution: Cannot Reproduce
-
Affects Version/s: Qt Creator 5.0.0
-
Fix Version/s: None
-
Component/s: Project & Build Management: CMake
-
Labels:None
-
Platform/s:
Description
When I select some option or cached variable as advanced, then this variable is still shown in the Projects view as a non-advanced option.
Example code:
option(ABC_OPTION "abc desc" ON) mark_as_advanced(ABC_OPTION) set(AYZ_OPTION OFF CACHE BOOL "ayz desc") mark_as_advanced(AYZ_OPTION)
The expected behavior is to show these options only when the Advanced checkbox is checked.