BUG: fix some bad changes in progress calc
[cmake.git] / Source / cmIncludeExternalMSProjectCommand.h
blob3d98d84fbf2dceda2870e5f87e1b3d4bcba6cc20
1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmIncludeExternalMSProjectCommand.h,v $
5 Language: C++
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
27 * generated by CMake.
29 class cmIncludeExternalMSProjectCommand : public cmCommand
31 public:
32 /**
33 * This is a virtual constructor for the command.
35 virtual cmCommand* Clone()
37 return new cmIncludeExternalMSProjectCommand;
40 /**
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);
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\n"
67 " dep1 dep2 ...)\n"
68 "Includes an external Microsoft project in the generated workspace "
69 "file. Currently does nothing on UNIX.";
72 cmTypeMacro(cmIncludeExternalMSProjectCommand, cmCommand);
77 #endif