2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-03-20 18:20:59 +00:00
|
|
|
#include "cmSourceGroupCommand.h"
|
|
|
|
|
2016-10-19 06:54:18 +00:00
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmSourceGroup.h"
|
|
|
|
#include "cmSystemTools.h"
|
|
|
|
|
|
|
|
class cmExecutionStatus;
|
|
|
|
|
2001-03-20 18:20:59 +00:00
|
|
|
// cmSourceGroupCommand
|
2016-05-16 14:34:04 +00:00
|
|
|
bool cmSourceGroupCommand::InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus&)
|
2001-03-20 18:20:59 +00:00
|
|
|
{
|
2016-09-15 21:59:29 +00:00
|
|
|
if (args.empty()) {
|
2001-03-20 18:20:59 +00:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2005-07-13 15:21:30 +00:00
|
|
|
|
|
|
|
std::string delimiter = "\\";
|
2016-05-16 14:34:04 +00:00
|
|
|
if (this->Makefile->GetDefinition("SOURCE_GROUP_DELIMITER")) {
|
2006-03-15 16:02:08 +00:00
|
|
|
delimiter = this->Makefile->GetDefinition("SOURCE_GROUP_DELIMITER");
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2005-07-13 15:21:30 +00:00
|
|
|
|
2011-06-08 11:54:33 +00:00
|
|
|
std::vector<std::string> folders =
|
|
|
|
cmSystemTools::tokenize(args[0], delimiter);
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2016-06-27 20:44:16 +00:00
|
|
|
cmSourceGroup* sg = CM_NULLPTR;
|
2007-08-24 18:21:49 +00:00
|
|
|
sg = this->Makefile->GetSourceGroup(folders);
|
2016-05-16 14:34:04 +00:00
|
|
|
if (!sg) {
|
2007-08-24 18:21:49 +00:00
|
|
|
this->Makefile->AddSourceGroup(folders);
|
|
|
|
sg = this->Makefile->GetSourceGroup(folders);
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2007-08-24 18:21:49 +00:00
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
if (!sg) {
|
2006-02-23 16:36:36 +00:00
|
|
|
this->SetError("Could not create or find source group");
|
|
|
|
return false;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2003-07-23 19:45:53 +00:00
|
|
|
// If only two arguments are given, the pre-1.8 version of the
|
|
|
|
// command is being invoked.
|
2016-05-16 14:34:04 +00:00
|
|
|
if (args.size() == 2 && args[1] != "FILES") {
|
2003-07-28 18:43:04 +00:00
|
|
|
sg->SetGroupRegex(args[1].c_str());
|
|
|
|
return true;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2003-07-23 19:32:54 +00:00
|
|
|
// Process arguments.
|
|
|
|
bool doingFiles = false;
|
2016-05-16 14:34:04 +00:00
|
|
|
for (unsigned int i = 1; i < args.size(); ++i) {
|
|
|
|
if (args[i] == "REGULAR_EXPRESSION") {
|
2003-07-23 19:32:54 +00:00
|
|
|
// Next argument must specify the regex.
|
2016-05-16 14:34:04 +00:00
|
|
|
if (i + 1 < args.size()) {
|
2003-07-23 19:32:54 +00:00
|
|
|
++i;
|
|
|
|
sg->SetGroupRegex(args[i].c_str());
|
2016-05-16 14:34:04 +00:00
|
|
|
} else {
|
2003-07-23 19:32:54 +00:00
|
|
|
this->SetError("REGULAR_EXPRESSION argument given without a regex.");
|
|
|
|
return false;
|
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
doingFiles = false;
|
|
|
|
} else if (args[i] == "FILES") {
|
2003-07-23 19:32:54 +00:00
|
|
|
// Next arguments will specify files.
|
|
|
|
doingFiles = true;
|
2016-05-16 14:34:04 +00:00
|
|
|
} else if (doingFiles) {
|
2003-07-23 19:32:54 +00:00
|
|
|
// Convert name to full path and add to the group's list.
|
2014-03-10 23:04:11 +00:00
|
|
|
std::string src = args[i];
|
2016-05-16 14:34:04 +00:00
|
|
|
if (!cmSystemTools::FileIsFullPath(src.c_str())) {
|
2015-04-16 19:17:41 +00:00
|
|
|
src = this->Makefile->GetCurrentSourceDirectory();
|
2003-07-23 19:32:54 +00:00
|
|
|
src += "/";
|
|
|
|
src += args[i];
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2016-10-30 17:34:06 +00:00
|
|
|
src = cmSystemTools::CollapseFullPath(src);
|
2014-03-10 23:04:11 +00:00
|
|
|
sg->AddGroupFile(src);
|
2016-05-16 14:34:04 +00:00
|
|
|
} else {
|
2015-01-05 19:31:31 +00:00
|
|
|
std::ostringstream err;
|
2014-03-11 12:35:32 +00:00
|
|
|
err << "Unknown argument \"" << args[i] << "\". "
|
2003-07-23 19:32:54 +00:00
|
|
|
<< "Perhaps the FILES keyword is missing.\n";
|
2014-03-10 23:04:11 +00:00
|
|
|
this->SetError(err.str());
|
2003-07-23 19:32:54 +00:00
|
|
|
return false;
|
2002-10-04 22:16:13 +00:00
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2003-07-23 19:32:54 +00:00
|
|
|
return true;
|
2001-03-20 18:20:59 +00:00
|
|
|
}
|