Files
CMake/Tests/RunCMake/VSSolution/CMP0143-OLD-check.cmake
Juan Ramos d3acd22380 USE_FOLDERS: Treat as on by default
Add a policy to treat the `USE_FOLDERS` global property as ON by default
if it is not set.

Fixes: #21695
2022-11-08 09:32:18 -05:00

7 lines
194 B
CMake

getProjectNames(projects)
list(FIND projects "CMakePredefinedTargets" found)
if(NOT (found EQUAL "-1"))
error("CMakePredefinedTargets should not be defined when CMP0143 is OLD!")
endif()