1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmIncludeExternalMSProjectCommand.h,v $
6 Date: $Date: 2008-01-23 15:27:59 $
7 Version: $Revision: 1.8 $
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 cmIncludeExternalMSProjectCommand_h
18 #define cmIncludeExternalMSProjectCommand_h
20 #include "cmCommand.h"
22 /** \class cmIncludeExternalMSProjectCommand
23 * \brief Specify an external MS project file for inclusion in the workspace.
25 * cmIncludeExternalMSProjectCommand is used to specify an externally
26 * generated Microsoft project file for inclusion in the default workspace
29 class cmIncludeExternalMSProjectCommand
: public cmCommand
33 * This is a virtual constructor for the command.
35 virtual cmCommand
* Clone()
37 return new cmIncludeExternalMSProjectCommand
;
41 * This is called when the command is first encountered in
42 * the CMakeLists.txt file.
44 virtual bool InitialPass(std::vector
<std::string
> const& args
,
45 cmExecutionStatus
&status
);
48 * The name of the command as specified in CMakeList.txt.
50 virtual const char* GetName() {return "include_external_msproject";}
53 * Succinct documentation.
55 virtual const char* GetTerseDocumentation()
57 return "Include an external Microsoft project file in a workspace.";
63 virtual const char* GetFullDocumentation()
66 " include_external_msproject(projectname location\n"
68 "Includes an external Microsoft project in the generated workspace "
69 "file. Currently does nothing on UNIX.";
72 cmTypeMacro(cmIncludeExternalMSProjectCommand
, cmCommand
);