diff options
author | Brad King <brad.king@kitware.com> | 2013-01-23 20:11:24 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-01-23 20:11:24 (GMT) |
commit | a37b0e3ebfb7f607ff29c7c4946b2c003c7a7bf9 (patch) | |
tree | 38ce80e0317d72dca99fa713397e3e0c26dc5eeb /Source/cmTarget.h | |
parent | bf2e4e8cb1696a8da626483217ec73ab2b20811d (diff) | |
parent | e3b5eb6b23e5d2b6034e1c13716abb73ab6b3397 (diff) | |
download | CMake-a37b0e3ebfb7f607ff29c7c4946b2c003c7a7bf9.zip CMake-a37b0e3ebfb7f607ff29c7c4946b2c003c7a7bf9.tar.gz CMake-a37b0e3ebfb7f607ff29c7c4946b2c003c7a7bf9.tar.bz2 |
Merge topic 'qt4-autolink-qtmain'
e3b5eb6 Automatically link to the qtmain library when linking to QtCore.
6c8d8af Add the $<TARGET_POLICY> expression
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index b3e17b2..65b5bdf 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -102,6 +102,10 @@ public: cmPolicies::PolicyStatus GetPolicyStatusCMP0008() const { return this->PolicyStatusCMP0008; } + /** Get the status of policy CMP0020 when the target was created. */ + cmPolicies::PolicyStatus GetPolicyStatusCMP0020() const + { return this->PolicyStatusCMP0020; } + /** * Get the list of the custom commands for this target */ @@ -658,6 +662,7 @@ private: cmPolicies::PolicyStatus PolicyStatusCMP0003; cmPolicies::PolicyStatus PolicyStatusCMP0004; cmPolicies::PolicyStatus PolicyStatusCMP0008; + cmPolicies::PolicyStatus PolicyStatusCMP0020; // Internal representation details. friend class cmTargetInternals; |