mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 21:00:01 -05:00
059b90a0b4
Fixes: #22303
8 lines
195 B
CMake
8 lines
195 B
CMake
include(CMakeDependentOption)
|
|
|
|
cmake_policy(SET CMP0127 OLD)
|
|
|
|
set(FOO "lower")
|
|
cmake_dependent_option(USE_FOO "Use Foo" ON "FOO MATCHES (UPPER|lower)" OFF)
|
|
message(STATUS "USE_FOO='${USE_FOO}'")
|