mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-02 03:39:43 -06:00
Add a `-LR[A][H] <regex>` flag with similar functionality to `-L[A][H]`, but instead of listing all cached variables, it show only specific variables that match the name regex.
7 lines
256 B
CMake
7 lines
256 B
CMake
set(EARLY_ENTRY_1 "1" CACHE STRING "early")
|
|
set(MIDDLE_ENTRY_1 "1" CACHE STRING "mid 1")
|
|
set(MIDDLE_ENTRY_2 "2" CACHE STRING "mid 2")
|
|
set(MIDDLE_ENTRY_3 "3" CACHE STRING "mid 3")
|
|
mark_as_advanced(MIDDLE_ENTRY_3)
|
|
set(LATER_ENTRY_1 "1" CACHE STRING "later")
|