diff options
author | Daniel Eiband <daniel.eiband@brainlab.com> | 2019-09-20 20:47:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-09-26 14:02:08 (GMT) |
commit | 91abf9f3c4a80f5a8417401d5277b3b66bc7d008 (patch) | |
tree | ff61f00c07626d0f2ac3b2b0cf8dedd2802392a0 /Source/cmGlobalGenerator.cxx | |
parent | f151a5770597dbe341fc6329a711f40e9195c773 (diff) | |
download | CMake-91abf9f3c4a80f5a8417401d5277b3b66bc7d008.zip CMake-91abf9f3c4a80f5a8417401d5277b3b66bc7d008.tar.gz CMake-91abf9f3c4a80f5a8417401d5277b3b66bc7d008.tar.bz2 |
cmCustomCommand: Move custom commands
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 2273c50..c4974f3 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -2582,7 +2582,7 @@ cmTarget cmGlobalGenerator::CreateGlobalTarget(GlobalTargetInfo const& gti, cmCustomCommand cc(nullptr, no_outputs, no_byproducts, no_depends, gti.CommandLines, nullptr, gti.WorkingDir.c_str()); cc.SetUsesTerminal(gti.UsesTerminal); - target.AddPostBuildCommand(cc); + target.AddPostBuildCommand(std::move(cc)); if (!gti.Message.empty()) { target.SetProperty("EchoString", gti.Message.c_str()); } |