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-01-18 16:20:24 +00:00
|
|
|
#include "cmAuxSourceDirectoryCommand.h"
|
2016-04-29 13:40:20 +00:00
|
|
|
|
2016-10-19 06:54:18 +00:00
|
|
|
#include <algorithm>
|
|
|
|
#include <cmsys/Directory.hxx>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#include "cmAlgorithms.h"
|
|
|
|
#include "cmMakefile.h"
|
2002-09-27 20:24:10 +00:00
|
|
|
#include "cmSourceFile.h"
|
2016-10-19 06:54:18 +00:00
|
|
|
#include "cmSystemTools.h"
|
|
|
|
#include "cmake.h"
|
2001-01-05 16:41:20 +00:00
|
|
|
|
2016-10-19 06:54:18 +00:00
|
|
|
class cmExecutionStatus;
|
2003-06-23 12:58:58 +00:00
|
|
|
|
2001-01-18 16:20:24 +00:00
|
|
|
// cmAuxSourceDirectoryCommand
|
2016-05-16 14:34:04 +00:00
|
|
|
bool cmAuxSourceDirectoryCommand::InitialPass(
|
|
|
|
std::vector<std::string> const& args, cmExecutionStatus&)
|
2001-01-05 16:41:20 +00:00
|
|
|
{
|
2016-05-16 14:34:04 +00:00
|
|
|
if (args.size() < 2 || args.size() > 2) {
|
2001-04-11 18:59:02 +00:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
2001-01-05 16:41:20 +00:00
|
|
|
return false;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2002-06-27 19:57:09 +00:00
|
|
|
std::string sourceListValue;
|
2001-01-05 16:41:20 +00:00
|
|
|
std::string templateDirectory = args[0];
|
2008-01-02 16:08:02 +00:00
|
|
|
std::string tdir;
|
2016-05-16 14:34:04 +00:00
|
|
|
if (!cmSystemTools::FileIsFullPath(templateDirectory.c_str())) {
|
2015-04-16 19:17:41 +00:00
|
|
|
tdir = this->Makefile->GetCurrentSourceDirectory();
|
2008-01-02 16:08:02 +00:00
|
|
|
tdir += "/";
|
|
|
|
tdir += templateDirectory;
|
2016-05-16 14:34:04 +00:00
|
|
|
} else {
|
2008-01-02 16:08:02 +00:00
|
|
|
tdir = templateDirectory;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2002-06-28 13:21:30 +00:00
|
|
|
|
|
|
|
// was the list already populated
|
2016-05-16 14:34:04 +00:00
|
|
|
const char* def = this->Makefile->GetDefinition(args[1]);
|
|
|
|
if (def) {
|
2002-06-28 13:21:30 +00:00
|
|
|
sourceListValue = def;
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2012-08-13 17:42:58 +00:00
|
|
|
|
2016-09-30 00:25:02 +00:00
|
|
|
std::vector<std::string> files;
|
|
|
|
|
2001-01-05 16:41:20 +00:00
|
|
|
// Load all the files in the directory
|
2003-06-23 12:58:58 +00:00
|
|
|
cmsys::Directory dir;
|
2016-10-30 17:34:06 +00:00
|
|
|
if (dir.Load(tdir)) {
|
2002-03-13 15:25:11 +00:00
|
|
|
size_t numfiles = dir.GetNumberOfFiles();
|
2016-05-16 14:34:04 +00:00
|
|
|
for (size_t i = 0; i < numfiles; ++i) {
|
2003-06-27 12:46:00 +00:00
|
|
|
std::string file = dir.GetFile(static_cast<unsigned long>(i));
|
2001-07-16 22:40:42 +00:00
|
|
|
// Split the filename into base and extension
|
2016-12-10 13:49:22 +00:00
|
|
|
std::string::size_type dotpos = file.rfind('.');
|
2016-05-16 14:34:04 +00:00
|
|
|
if (dotpos != std::string::npos) {
|
|
|
|
std::string ext = file.substr(dotpos + 1);
|
2007-06-18 15:59:23 +00:00
|
|
|
std::string base = file.substr(0, dotpos);
|
2001-07-16 22:40:42 +00:00
|
|
|
// Process only source files
|
2015-10-24 12:58:23 +00:00
|
|
|
std::vector<std::string> srcExts =
|
2016-05-16 14:34:04 +00:00
|
|
|
this->Makefile->GetCMakeInstance()->GetSourceExtensions();
|
|
|
|
if (!base.empty() &&
|
|
|
|
std::find(srcExts.begin(), srcExts.end(), ext) != srcExts.end()) {
|
2001-07-16 22:40:42 +00:00
|
|
|
std::string fullname = templateDirectory;
|
|
|
|
fullname += "/";
|
|
|
|
fullname += file;
|
2012-08-13 17:42:58 +00:00
|
|
|
// add the file as a class file so
|
2001-07-16 22:40:42 +00:00
|
|
|
// depends can be done
|
2016-05-16 14:34:04 +00:00
|
|
|
cmSourceFile* sf = this->Makefile->GetOrCreateSource(fullname);
|
|
|
|
sf->SetProperty("ABSTRACT", "0");
|
2016-09-30 00:25:02 +00:00
|
|
|
files.push_back(fullname);
|
2001-01-05 16:41:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 14:34:04 +00:00
|
|
|
}
|
2016-09-30 00:25:02 +00:00
|
|
|
std::sort(files.begin(), files.end());
|
|
|
|
if (!sourceListValue.empty()) {
|
|
|
|
sourceListValue += ";";
|
|
|
|
}
|
|
|
|
sourceListValue += cmJoin(files, ";");
|
2014-03-10 23:04:11 +00:00
|
|
|
this->Makefile->AddDefinition(args[1], sourceListValue.c_str());
|
2001-01-05 16:41:20 +00:00
|
|
|
return true;
|
|
|
|
}
|