mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 12:49:50 -05: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,15 +17,13 @@
|
||||
#include "cmSubdirCommand.h"
|
||||
|
||||
// cmSubdirCommand
|
||||
bool cmSubdirCommand::InitialPass(std::vector<std::string> const& argsIn)
|
||||
bool cmSubdirCommand::InitialPass(std::vector<std::string> const& args)
|
||||
{
|
||||
if(argsIn.size() < 1 )
|
||||
if(args.size() < 1 )
|
||||
{
|
||||
this->SetError("called with incorrect number of arguments");
|
||||
return false;
|
||||
}
|
||||
std::vector<std::string> args;
|
||||
cmSystemTools::ExpandListArguments(argsIn, args);
|
||||
bool res = true;
|
||||
|
||||
for(std::vector<std::string>::const_iterator i = args.begin();
|
||||
|
||||
Reference in New Issue
Block a user