diff options
author | Daniel Eiband <daniel.eiband@brainlab.com> | 2019-09-20 23:17:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-09-26 14:04:03 (GMT) |
commit | 5a06efda05feda02511592c76134ee8ed3e8b650 (patch) | |
tree | 4bd8dca46fcc5f1af0bb5c92792ab33b103e02f6 /Source/cmCPluginAPI.cxx | |
parent | ea1bed34b2ba16f3971b90996dc345834f0d9699 (diff) | |
download | CMake-5a06efda05feda02511592c76134ee8ed3e8b650.zip CMake-5a06efda05feda02511592c76134ee8ed3e8b650.tar.gz CMake-5a06efda05feda02511592c76134ee8ed3e8b650.tar.bz2 |
cmMakefile: Remove AddUtilityCommand overload without byproducts
Diffstat (limited to 'Source/cmCPluginAPI.cxx')
-rw-r--r-- | Source/cmCPluginAPI.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx index 29d2495..78a232e 100644 --- a/Source/cmCPluginAPI.cxx +++ b/Source/cmCPluginAPI.cxx @@ -220,8 +220,10 @@ void CCONV cmAddUtilityCommand(void* arg, const char* utilityName, } // Pass the call to the makefile instance. + std::vector<std::string> no_byproducts; mf->AddUtilityCommand(utilityName, cmCommandOrigin::Project, - (all ? false : true), nullptr, depends2, commandLines); + (all ? false : true), nullptr, no_byproducts, depends2, + commandLines); } void CCONV cmAddCustomCommand(void* arg, const char* source, const char* command, int numArgs, |