ENH: mark some vars as advanced (and resort the list)
[cmake.git] / Source / cmIncludeExternalMSProjectCommand.h
blob5fe7ac0f00b2b1cb896c0d33319a54fbe28196b9
1 /*=========================================================================
3 Program: Insight Segmentation & Registration Toolkit
4 Module: $RCSfile: cmIncludeExternalMSProjectCommand.h,v $
5 Language: C++
6 Date: $Date: 2002-01-21 20:30:26 $
7 Version: $Revision: 1.2 $
9 Copyright (c) 2002 Insight Consortium. All rights reserved.
10 See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm 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 "cmStandardIncludes.h"
21 #include "cmCommand.h"
23 /** \class cmIncludeExternalMSProjectCommand
24 * \brief Specify an external MS project file for inclusion in the workspace.
26 * cmIncludeExternalMSProjectCommand is used to specify an externally generated
27 * Microsoft project file for inclusion in the default workspace generated by
28 * CMake.
30 class cmIncludeExternalMSProjectCommand : public cmCommand
32 public:
33 /**
34 * This is a virtual constructor for the command.
36 virtual cmCommand* Clone()
38 return new cmIncludeExternalMSProjectCommand;
41 /**
42 * This is called when the command is first encountered in
43 * the CMakeLists.txt file.
45 virtual bool InitialPass(std::vector<std::string> const& args);
47 /**
48 * The name of the command as specified in CMakeList.txt.
50 virtual const char* GetName() {return "INCLUDE_EXTERNAL_MSPROJECT";}
52 /**
53 * Succinct documentation.
55 virtual const char* GetTerseDocumentation()
57 return "Include an external Microsoft project file in a workspace.";
60 /**
61 * More documentation.
63 virtual const char* GetFullDocumentation()
65 return
66 "INCLUDE_EXTERNAL_MSPROJECT(projectname location dep1 dep2 ...) Includes an external Microsoft project in the workspace file. Does nothing on UNIX currently\n";
69 cmTypeMacro(cmIncludeExternalMSProjectCommand, cmCommand);
74 #endif