Bug 105350
Summary: | [CMake] Hide advanced variables from cmake GUIs | ||
---|---|---|---|
Product: | WebKit | Reporter: | Laszlo Gombos <laszlo.gombos> |
Component: | Platform | Assignee: | Nobody <webkit-unassigned> |
Status: | NEW | ||
Severity: | Normal | CC: | mxie, paroga, yael |
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | Unspecified | ||
OS: | Unspecified |
Laszlo Gombos
Build variables that are not meant to be configurable by packagers/maintainers (e.g. variable that hold a path for dependencies) should be marked with mark_as_advanced. In particular we should consider consistently follow the pattern below for FindXXX.cmake (see for example FindFontconfig.cmake).
include(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(...)
mark_as_advanced(...)
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |