mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
A positional option allows 'cmake --workflow --preset <preset>' to be shortened to 'cmake --workflow <preset>'. Fixes: #26270
4 lines
169 B
CMake
4 lines
169 B
CMake
if(NOT WORKFLOW_PRESET STREQUAL "SinglePresetArg")
|
|
message(FATAL_ERROR "Expected 'SinglePresetArg' workflow preset, but actual value is ${WORKFLOW_PRESET}")
|
|
endif()
|