2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-05-08 02:11:16 +04:00
|
|
|
#include "cmMakeDirectoryCommand.h"
|
2001-05-04 19:34:59 +04:00
|
|
|
|
2001-05-08 02:11:16 +04:00
|
|
|
// cmMakeDirectoryCommand
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmMakeDirectoryCommand::InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus&)
|
2001-05-04 19:34:59 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (args.size() != 1) {
|
2001-05-04 19:34:59 +04:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (!this->Makefile->CanIWriteThisFile(args[0].c_str())) {
|
|
|
|
std::string e = "attempted to create a directory: " + args[0] +
|
|
|
|
" into a source directory.";
|
|
|
|
this->SetError(e);
|
|
|
|
cmSystemTools::SetFatalErrorOccured();
|
|
|
|
return false;
|
|
|
|
}
|
2002-03-06 02:41:24 +03:00
|
|
|
cmSystemTools::MakeDirectory(args[0].c_str());
|
2001-05-04 19:34:59 +04:00
|
|
|
return true;
|
|
|
|
}
|