diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:45 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:46 (GMT) |
commit | f0aa660772565545cbcda9ed8ae946b8d5097416 (patch) | |
tree | bb2cebad21b46bd465c4e5aaf16654a40e88576e /Source/cmGlobalXCodeGenerator.cxx | |
parent | 766839c56da82e12b6986fb5cf7c8d86442615bc (diff) | |
download | CMake-f0aa660772565545cbcda9ed8ae946b8d5097416.zip CMake-f0aa660772565545cbcda9ed8ae946b8d5097416.tar.gz CMake-f0aa660772565545cbcda9ed8ae946b8d5097416.tar.bz2 |
cmGeneratorTarget: Move HasSOName from cmTarget.
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index b44848c..d7ae36d 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -1944,7 +1944,7 @@ void cmGlobalXCodeGenerator::CreateBuildSettings(cmTarget& target, const char* version = target.GetProperty("VERSION"); const char* soversion = target.GetProperty("SOVERSION"); - if(!target.HasSOName(configName) || target.IsFrameworkOnApple()) + if(!gtgt->HasSOName(configName) || target.IsFrameworkOnApple()) { version = 0; soversion = 0; |