https://github.com/Kitware/CMake
Revision 19fc1ba630e06f75fed8447999c2bef6439663c2 authored by Ben Boeckel on 21 November 2022, 17:58:30 UTC, committed by Ben Boeckel on 21 November 2022, 23:20:46 UTC
1 parent 87f7553
Raw File
Tip revision: 19fc1ba630e06f75fed8447999c2bef6439663c2 authored by Ben Boeckel on 21 November 2022, 17:58:30 UTC
Help/dev/experimental: document the `msvc` module map format
Tip revision: 19fc1ba
cmMakeDirectoryCommand.cxx
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#include "cmMakeDirectoryCommand.h"

#include "cmExecutionStatus.h"
#include "cmMakefile.h"
#include "cmSystemTools.h"

// cmMakeDirectoryCommand
bool cmMakeDirectoryCommand(std::vector<std::string> const& args,
                            cmExecutionStatus& status)
{
  if (args.size() != 1) {
    status.SetError("called with incorrect number of arguments");
    return false;
  }
  if (!status.GetMakefile().CanIWriteThisFile(args[0])) {
    std::string e = "attempted to create a directory: " + args[0] +
      " into a source directory.";
    status.SetError(e);
    cmSystemTools::SetFatalErrorOccurred();
    return false;
  }
  cmSystemTools::MakeDirectory(args[0]);
  return true;
}
back to top