123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- #include "cmAddSubDirectoryCommand.h"
- #include <sstream>
- #include <string.h>
- #include "cmMakefile.h"
- #include "cmSystemTools.h"
- class cmExecutionStatus;
- bool cmAddSubDirectoryCommand::InitialPass(
- std::vector<std::string> const& args, cmExecutionStatus&)
- {
- if (args.empty()) {
- this->SetError("called with incorrect number of arguments");
- return false;
- }
-
- std::string const& srcArg = args[0];
- std::string binArg;
- bool excludeFromAll = false;
-
- std::vector<std::string>::const_iterator i = args.begin();
- ++i;
- for (; i != args.end(); ++i) {
- if (*i == "EXCLUDE_FROM_ALL") {
- excludeFromAll = true;
- continue;
- }
- if (binArg.empty()) {
- binArg = *i;
- } else {
- this->SetError("called with incorrect number of arguments");
- return false;
- }
- }
-
-
- std::string srcPath;
- if (cmSystemTools::FileIsFullPath(srcArg)) {
- srcPath = srcArg;
- } else {
- srcPath = this->Makefile->GetCurrentSourceDirectory();
- srcPath += "/";
- srcPath += srcArg;
- }
- if (!cmSystemTools::FileIsDirectory(srcPath)) {
- std::string error = "given source \"";
- error += srcArg;
- error += "\" which is not an existing directory.";
- this->SetError(error);
- return false;
- }
- srcPath = cmSystemTools::CollapseFullPath(srcPath);
-
- std::string binPath;
- if (binArg.empty()) {
-
-
-
- if (!cmSystemTools::IsSubDirectory(
- srcPath, this->Makefile->GetCurrentSourceDirectory())) {
- std::ostringstream e;
- e << "not given a binary directory but the given source directory "
- << "\"" << srcPath << "\" is not a subdirectory of \""
- << this->Makefile->GetCurrentSourceDirectory() << "\". "
- << "When specifying an out-of-tree source a binary directory "
- << "must be explicitly specified.";
- this->SetError(e.str());
- return false;
- }
-
-
- const char* src = this->Makefile->GetCurrentSourceDirectory();
- const char* bin = this->Makefile->GetCurrentBinaryDirectory();
- size_t srcLen = strlen(src);
- size_t binLen = strlen(bin);
- if (srcLen > 0 && src[srcLen - 1] == '/') {
- --srcLen;
- }
- if (binLen > 0 && bin[binLen - 1] == '/') {
- --binLen;
- }
- binPath = std::string(bin, binLen) + srcPath.substr(srcLen);
- } else {
-
-
- if (cmSystemTools::FileIsFullPath(binArg)) {
- binPath = binArg;
- } else {
- binPath = this->Makefile->GetCurrentBinaryDirectory();
- binPath += "/";
- binPath += binArg;
- }
- }
- binPath = cmSystemTools::CollapseFullPath(binPath);
-
- this->Makefile->AddSubDirectory(srcPath, binPath, excludeFromAll, true);
- return true;
- }
|