2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-05-04 19:34:59 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-05-04 19:34:59 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
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
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmMakeDirectoryCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2001-05-04 19:34:59 +04:00
|
|
|
{
|
2002-03-29 22:20:32 +03:00
|
|
|
if(args.size() != 1 )
|
2001-05-04 19:34:59 +04:00
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2006-03-22 22:40:36 +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.c_str());
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|