mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-25 16:09:42 -06:00
Add block() and endblock() commands offering the capability to create new scopes for variables and/or policies. Fixes: #20171
23 lines
476 B
CMake
23 lines
476 B
CMake
include(RunCMake)
|
|
|
|
run_cmake(WrongArgument)
|
|
run_cmake(InvalidArgument)
|
|
run_cmake(MissingArgument)
|
|
run_cmake(WrongScope)
|
|
run_cmake(EndMissing)
|
|
run_cmake(EndWithArgument)
|
|
run_cmake(EndAlone)
|
|
run_cmake(EndAloneWithArgument)
|
|
|
|
run_cmake(InvalidNesting1)
|
|
run_cmake(InvalidNesting2)
|
|
run_cmake(InvalidNesting3)
|
|
run_cmake(InvalidNesting4)
|
|
run_cmake(InvalidNesting5)
|
|
run_cmake(InvalidNesting6)
|
|
|
|
run_cmake(Scope)
|
|
run_cmake(Scope-VARIABLES)
|
|
run_cmake(Scope-POLICIES)
|
|
run_cmake(Workflows)
|