diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-09 21:58:19 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-19 18:27:41 (GMT) |
commit | 88d10d55ac68f2251a549cf09292af8a1fb66ba3 (patch) | |
tree | 3305c9e61c5a26051b6e2bd8526a0bd8ba00d821 /Source/cmMakefileExecutableTargetGenerator.cxx | |
parent | b5f5de70c0b754010f151cde75783a2cc62db835 (diff) | |
download | CMake-88d10d55ac68f2251a549cf09292af8a1fb66ba3.zip CMake-88d10d55ac68f2251a549cf09292af8a1fb66ba3.tar.gz CMake-88d10d55ac68f2251a549cf09292af8a1fb66ba3.tar.bz2 |
cmGeneratorTarget: Copy IsAppBundleOnApple from cmTarget.
Leave the cmTarget method behind for now to implement cmInstallCommand.
Diffstat (limited to 'Source/cmMakefileExecutableTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileExecutableTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefileExecutableTargetGenerator.cxx b/Source/cmMakefileExecutableTargetGenerator.cxx index 178b462..31fb37b 100644 --- a/Source/cmMakefileExecutableTargetGenerator.cxx +++ b/Source/cmMakefileExecutableTargetGenerator.cxx @@ -100,7 +100,7 @@ void cmMakefileExecutableTargetGenerator::WriteExecutableRule(bool relink) // Construct the full path version of the names. std::string outpath = this->GeneratorTarget->GetDirectory(this->ConfigName); - if(this->Target->IsAppBundleOnApple()) + if(this->GeneratorTarget->IsAppBundleOnApple()) { this->OSXBundleGenerator->CreateAppBundle(targetName, outpath); } |