mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 11:22:21 -06:00
When generating per-config blocks in test and install scripts replace
the form
IF()
# config == A
ENDIF()
IF()
# config == B
ENDIF()
with
IF()
# config == A
ELSEIF()
# config == B
ELSE()
# no config matches
ENDIF()
for clarity and to support the else() case cleanly.
3.1 KiB
3.1 KiB