diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-19 23:12:37 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-20 22:52:23 (GMT) |
commit | c099e00fc0a9c47a2addaca145952b1c33195fab (patch) | |
tree | 6997d09c8174eaa0e8d75fed5f4ce89e3f127556 /Source/cmLocalGenerator.cxx | |
parent | d74bca5a8fee1d45c60b60a70a2a1a90abb74180 (diff) | |
download | CMake-c099e00fc0a9c47a2addaca145952b1c33195fab.zip CMake-c099e00fc0a9c47a2addaca145952b1c33195fab.tar.gz CMake-c099e00fc0a9c47a2addaca145952b1c33195fab.tar.bz2 |
Access policy status from cmGeneratorTarget at generate time.
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index c65d9e0..93ddac0 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -1551,7 +1551,7 @@ void cmLocalGenerator::OutputLinkLibraries(std::string& linkLibraries, GetGlobalPropertyAsBool("TARGET_SUPPORTS_SHARED_LIBS")) { bool add_shlib_flags = false; - switch(tgt.Target->GetPolicyStatusCMP0065()) + switch(tgt.GetPolicyStatusCMP0065()) { case cmPolicies::WARN: if(!tgt.GetPropertyAsBool("ENABLE_EXPORTS") && @@ -2108,7 +2108,7 @@ void cmLocalGenerator target->GetType() != cmState::MODULE_LIBRARY && !target->IsExecutableWithExports()) { - switch (target->Target->GetPolicyStatusCMP0063()) + switch (target->GetPolicyStatusCMP0063()) { case cmPolicies::OLD: return; |