1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmMakeDirectoryCommand.h,v $
6 Date: $Date: 2008-01-23 15:27:59 $
7 Version: $Revision: 1.13 $
9 Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
10 See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
12 This software is distributed WITHOUT ANY WARRANTY; without even
13 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 PURPOSE. See the above copyright notices for more information.
16 =========================================================================*/
17 #ifndef cmMakeDirectoryCommand_h
18 #define cmMakeDirectoryCommand_h
20 #include "cmCommand.h"
22 /** \class cmMakeDirectoryCommand
23 * \brief Specify auxiliary source code directories.
25 * cmMakeDirectoryCommand specifies source code directories
26 * that must be built as part of this build process. This directories
27 * are not recursively processed like the SUBDIR command (cmSubdirCommand).
28 * A side effect of this command is to create a subdirectory in the build
29 * directory structure.
31 class cmMakeDirectoryCommand
: public cmCommand
35 * This is a virtual constructor for the command.
37 virtual cmCommand
* Clone()
39 return new cmMakeDirectoryCommand
;
43 * This is called when the command is first encountered in
44 * the CMakeLists.txt file.
46 virtual bool InitialPass(std::vector
<std::string
> const& args
,
47 cmExecutionStatus
&status
);
50 * The name of the command as specified in CMakeList.txt.
52 virtual const char* GetName() { return "make_directory";}
55 * This determines if the command is invoked when in script mode.
57 virtual bool IsScriptable() { return true; }
60 * Succinct documentation.
62 virtual const char* GetTerseDocumentation()
64 return "Deprecated. Use the file(MAKE_DIRECTORY ) command instead.";
70 virtual const char* GetFullDocumentation()
73 " make_directory(directory)\n"
74 "Creates the specified directory. Full paths should be given. Any "
75 "parent directories that do not exist will also be created. Use with "
79 /** This command is kept for compatibility with older CMake versions. */
80 virtual bool IsDiscouraged()
85 cmTypeMacro(cmMakeDirectoryCommand
, cmCommand
);