CMake/Tests/RunCMake/CMP0037/CMP0037-OLD-reserved.cmake
Nils Gladitz 3900fcf4a8 CMP0037: Extend policy to reserved names and custom targets
Teach add_custom_target to check the policy too.  Extend the policy to
disallow reserved target names that we use for builtin targets like
"all".

Extend the RunCMake.CMP0037 test to cover these cases.
2013-11-19 09:44:22 -05:00

7 lines
115 B
CMake

cmake_policy(SET CMP0037 OLD)
add_library(all empty.cpp)
add_executable(clean empty.cpp)
add_custom_target(help)