Files
CMake/Tests/RunCMake/block/RunCMakeTest.cmake
Marc Chevrier 44a2f3f332 Add new flow-control commands for variables and policies scopes management
Add block() and endblock() commands offering the capability to create
new scopes for variables and/or policies.

Fixes: #20171
2022-08-22 16:25:53 +02:00

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)