mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 14:40:26 -06:00
ENH: Moved ExpandListVariables out of individual commands. Argument evaluation rules are now very consistent. Double quotes can always be used to create exactly one argument, regardless of contents inside.
This commit is contained in:
@@ -17,17 +17,15 @@
|
||||
#include "cmAddCustomTargetCommand.h"
|
||||
|
||||
// cmAddCustomTargetCommand
|
||||
bool cmAddCustomTargetCommand::InitialPass(std::vector<std::string> const& argsIn)
|
||||
bool cmAddCustomTargetCommand::InitialPass(std::vector<std::string> const& args)
|
||||
{
|
||||
bool all = false;
|
||||
|
||||
if(argsIn.size() < 2 )
|
||||
if(args.size() < 2 )
|
||||
{
|
||||
this->SetError("called with incorrect number of arguments");
|
||||
return false;
|
||||
}
|
||||
std::vector<std::string> args;
|
||||
cmSystemTools::ExpandListArguments(argsIn, args);
|
||||
|
||||
// all target option
|
||||
std::string arguments;
|
||||
|
||||
Reference in New Issue
Block a user