diff options
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 8ec2e1f..7141e41 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -114,6 +114,10 @@ public: cmPolicies::PolicyStatus GetPolicyStatusCMP0004() const { return this->PolicyStatusCMP0004; } + /** Get the status of policy CMP0008 when the target was created. */ + cmPolicies::PolicyStatus GetPolicyStatusCMP0008() const + { return this->PolicyStatusCMP0008; } + /** * Get the list of the custom commands for this target */ @@ -552,6 +556,7 @@ private: // Policy status recorded when target was created. cmPolicies::PolicyStatus PolicyStatusCMP0003; cmPolicies::PolicyStatus PolicyStatusCMP0004; + cmPolicies::PolicyStatus PolicyStatusCMP0008; // Internal representation details. friend class cmTargetInternals; |