diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-11-19 10:05:47 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-11-19 19:40:31 (GMT) |
commit | 50d152035da514005eaaa1d3e39e407676efd73c (patch) | |
tree | f05b8412ffb6f673918b9d21f3fe3d591f16af68 /Source/cmGlobalGenerator.cxx | |
parent | 0f876439e941c18f7fc264fbf02f5df9bc531f90 (diff) | |
download | CMake-50d152035da514005eaaa1d3e39e407676efd73c.zip CMake-50d152035da514005eaaa1d3e39e407676efd73c.tar.gz CMake-50d152035da514005eaaa1d3e39e407676efd73c.tar.bz2 |
cmTarget: Make custom command accessors API const.
Add specific mutators instead of providing non-const refs.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 65a7118..a160336 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -2407,7 +2407,7 @@ cmTarget cmGlobalGenerator::CreateGlobalTarget( // Store the custom command in the target. cmCustomCommand cc(0, no_outputs, no_depends, *commandLines, 0, workingDirectory); - target.GetPostBuildCommands().push_back(cc); + target.AddPostBuildCommand(cc); target.SetProperty("EchoString", message); std::vector<std::string>::iterator dit; for ( dit = depends.begin(); dit != depends.end(); ++ dit ) |