diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-22 22:42:58 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-26 21:02:13 (GMT) |
commit | 3f8aa62bfb339dded326b0bc36016134a3dc845b (patch) | |
tree | 52b6c1b7193c445c59ff99dbe105d2a39a1dac64 /Source/cmGlobalXCodeGenerator.cxx | |
parent | d288b216af6864567354ccb05e85466fb57d46b0 (diff) | |
download | CMake-3f8aa62bfb339dded326b0bc36016134a3dc845b.zip CMake-3f8aa62bfb339dded326b0bc36016134a3dc845b.tar.gz CMake-3f8aa62bfb339dded326b0bc36016134a3dc845b.tar.bz2 |
cmGeneratorTarget: Add API for target-relative commands.
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index eecc82b..e6af94f 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -1469,11 +1469,11 @@ void cmGlobalXCodeGenerator::CreateCustomCommands(cmXCodeObject* buildPhases, cmGeneratorTarget* gtgt) { std::vector<cmCustomCommand> const & prebuild - = gtgt->Target->GetPreBuildCommands(); + = gtgt->GetPreBuildCommands(); std::vector<cmCustomCommand> const & prelink - = gtgt->Target->GetPreLinkCommands(); + = gtgt->GetPreLinkCommands(); std::vector<cmCustomCommand> postbuild - = gtgt->Target->GetPostBuildCommands(); + = gtgt->GetPostBuildCommands(); if(gtgt->GetType() == cmState::SHARED_LIBRARY && !gtgt->IsFrameworkOnApple()) |