diff options
author | Brad King <brad.king@kitware.com> | 2014-03-06 14:18:37 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-03-06 16:05:47 (GMT) |
commit | b1bbee3e9a284503b7372afd7b67dc9d5ba0c31a (patch) | |
tree | 504884a40b12aaedd70a08471217e8246bb9a6d8 /Source/cmTarget.h | |
parent | a7c956b86736ea82ade88bea6414cd6a8c84e307 (diff) | |
download | CMake-b1bbee3e9a284503b7372afd7b67dc9d5ba0c31a.zip CMake-b1bbee3e9a284503b7372afd7b67dc9d5ba0c31a.tar.gz CMake-b1bbee3e9a284503b7372afd7b67dc9d5ba0c31a.tar.bz2 |
Record more policies on targets when created
Policies CMP0027, CMP0038, and CMP0046 have per-target meaning so
record the policy settings on targets as they are created.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 271824b..0e9d682 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -26,8 +26,11 @@ F(CMP0020) \ F(CMP0021) \ F(CMP0022) \ + F(CMP0027) \ + F(CMP0038) \ F(CMP0041) \ - F(CMP0042) + F(CMP0042) \ + F(CMP0046) class cmake; class cmMakefile; |