diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-02-11 17:39:55 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-02-12 16:19:27 (GMT) |
commit | f2eee72facb9b4a658e1205bbe9113a808e76775 (patch) | |
tree | b9ee09e297649dffb9dc656936a263f1384703c2 /Source/cmPolicies.cxx | |
parent | c248a437c47b4419fd955d4b1f406f7c8b9dcd74 (diff) | |
download | CMake-f2eee72facb9b4a658e1205bbe9113a808e76775.zip CMake-f2eee72facb9b4a658e1205bbe9113a808e76775.tar.gz CMake-f2eee72facb9b4a658e1205bbe9113a808e76775.tar.bz2 |
add_custom_command: Disallow use of SOURCE signatures.
Add CMP0050 to control this behavior.
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 78453db..93072f5 100644 --- a/Source/cmPolicies.cxx +++ b/Source/cmPolicies.cxx @@ -338,6 +338,11 @@ cmPolicies::cmPolicies() CMP0049, "CMP0049", "Do not expand variables in target source entries.", 3,0,0, cmPolicies::WARN); + + this->DefinePolicy( + CMP0050, "CMP0050", + "Disallow add_custom_command SOURCE signatures.", + 3,0,0, cmPolicies::WARN); } cmPolicies::~cmPolicies() |