diff options
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 5811285..2f695da 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -54,6 +54,7 @@ cmTarget::cmTarget() { this->Makefile = 0; this->PolicyStatusCMP0003 = cmPolicies::WARN; + this->PolicyStatusCMP0004 = cmPolicies::WARN; this->LinkLibrariesAnalyzed = false; this->HaveInstallRule = false; this->DLLPlatform = false; @@ -731,6 +732,8 @@ void cmTarget::SetMakefile(cmMakefile* mf) // Record current policies for later use. this->PolicyStatusCMP0003 = this->Makefile->GetPolicyStatus(cmPolicies::CMP0003); + this->PolicyStatusCMP0004 = + this->Makefile->GetPolicyStatus(cmPolicies::CMP0004); } //---------------------------------------------------------------------------- |