2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-05-07 18:11:16 -04:00
|
|
|
#include "cmMakeDirectoryCommand.h"
|
2001-05-04 11:34:59 -04:00
|
|
|
|
2016-10-25 20:35:04 +02:00
|
|
|
#include "cmMakefile.h"
|
2016-10-19 22:30:58 +02:00
|
|
|
#include "cmSystemTools.h"
|
|
|
|
|
2016-10-25 20:35:04 +02:00
|
|
|
class cmExecutionStatus;
|
|
|
|
|
2001-05-07 18:11:16 -04:00
|
|
|
// cmMakeDirectoryCommand
|
2016-05-16 10:34:04 -04:00
|
|
|
bool cmMakeDirectoryCommand::InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus&)
|
2001-05-04 11:34:59 -04:00
|
|
|
{
|
2016-05-16 10:34:04 -04:00
|
|
|
if (args.size() != 1) {
|
2001-05-04 11:34:59 -04:00
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
2016-05-16 10:34:04 -04: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-05 18:41:24 -05:00
|
|
|
cmSystemTools::MakeDirectory(args[0].c_str());
|
2001-05-04 11:34:59 -04:00
|
|
|
return true;
|
|
|
|
}
|