diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-11-05 16:32:30 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-11-07 10:06:39 (GMT) |
commit | 05f5fde0eb83c0e49aab3214f28a098861aa3313 (patch) | |
tree | bf2a838e3b1489805abed701703df62224572702 /Source/cmPolicies.cxx | |
parent | 18985f6c2926725b08f5941205fe21c344c4b3ea (diff) | |
download | CMake-05f5fde0eb83c0e49aab3214f28a098861aa3313.zip CMake-05f5fde0eb83c0e49aab3214f28a098861aa3313.tar.gz CMake-05f5fde0eb83c0e49aab3214f28a098861aa3313.tar.bz2 |
Disallow invalid target names (#13140)
Exclude Borland and NMake from the CMP0037 test. They do not accept
the colon in a target name.
Diffstat (limited to 'Source/cmPolicies.cxx')
-rw-r--r-- | Source/cmPolicies.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmPolicies.cxx b/Source/cmPolicies.cxx index ab822d3..db23f1e 100644 --- a/Source/cmPolicies.cxx +++ b/Source/cmPolicies.cxx @@ -286,6 +286,11 @@ cmPolicies::cmPolicies() CMP0036, "CMP0036", "The build_name command should not be called.", 3,0,0,0, cmPolicies::WARN); + + this->DefinePolicy( + CMP0037, "CMP0037", + "Target names should match a validity pattern.", + 3,0,0,0, cmPolicies::WARN); } cmPolicies::~cmPolicies() |