diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:49 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:49 (GMT) |
commit | ee26add4f4062d8b53f22e161027a573dc03399c (patch) | |
tree | 8874dc7a8b8524127ea16415392c7b62d1b1d4d1 /Source/cmNinjaTargetGenerator.cxx | |
parent | c8a5f5ae60c911298fc3c0f168ac3652223722a4 (diff) | |
download | CMake-ee26add4f4062d8b53f22e161027a573dc03399c.zip CMake-ee26add4f4062d8b53f22e161027a573dc03399c.tar.gz CMake-ee26add4f4062d8b53f22e161027a573dc03399c.tar.bz2 |
cmGeneratorTarget: Move IsBundleOnApple from cmTarget.
Diffstat (limited to 'Source/cmNinjaTargetGenerator.cxx')
-rw-r--r-- | Source/cmNinjaTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmNinjaTargetGenerator.cxx b/Source/cmNinjaTargetGenerator.cxx index 16e1f48..07efa16 100644 --- a/Source/cmNinjaTargetGenerator.cxx +++ b/Source/cmNinjaTargetGenerator.cxx @@ -742,7 +742,7 @@ cmNinjaTargetGenerator::MacOSXContentGeneratorType::operator()( cmSourceFile const& source, const char* pkgloc) { // Skip OS X content when not building a Framework or Bundle. - if(!this->Generator->GetTarget()->IsBundleOnApple()) + if(!this->Generator->GetGeneratorTarget()->IsBundleOnApple()) { return; } |