diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-03-23 14:53:29 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-03-23 20:45:09 (GMT) |
commit | f6241db3e0b69fbf99835b955b17be0f253a742f (patch) | |
tree | 80d9cb9d1db062adbfb218824a95cbdb80367a6c /Source/cmGeneratorTarget.cxx | |
parent | 3c09bf0fa7139be0215224ef85a4c2d3c38227f0 (diff) | |
download | CMake-f6241db3e0b69fbf99835b955b17be0f253a742f.zip CMake-f6241db3e0b69fbf99835b955b17be0f253a742f.tar.gz CMake-f6241db3e0b69fbf99835b955b17be0f253a742f.tar.bz2 |
cmTarget: Move member `OriginalLinkLibraries` to impl
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r-- | Source/cmGeneratorTarget.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx index 5916fcc..23b5bcb 100644 --- a/Source/cmGeneratorTarget.cxx +++ b/Source/cmGeneratorTarget.cxx @@ -262,7 +262,7 @@ cmGeneratorTarget::cmGeneratorTarget(cmTarget* t, cmLocalGenerator* lg) this->DLLPlatform = !this->Makefile->GetSafeDefinition("CMAKE_IMPORT_LIBRARY_SUFFIX").empty(); - this->PolicyMap = t->PolicyMap; + this->PolicyMap = t->GetPolicyMap(); } cmGeneratorTarget::~cmGeneratorTarget() |