cmIncludeExternalMSProjectCommand.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef cmIncludeExternalMSProjectCommand_h
  4. #define cmIncludeExternalMSProjectCommand_h
  5. #include "cmConfigure.h"
  6. #include <string>
  7. #include <vector>
  8. #include "cmCommand.h"
  9. class cmExecutionStatus;
  10. /** \class cmIncludeExternalMSProjectCommand
  11. * \brief Specify an external MS project file for inclusion in the workspace.
  12. *
  13. * cmIncludeExternalMSProjectCommand is used to specify an externally
  14. * generated Microsoft project file for inclusion in the default workspace
  15. * generated by CMake.
  16. */
  17. class cmIncludeExternalMSProjectCommand : public cmCommand
  18. {
  19. public:
  20. /**
  21. * This is a virtual constructor for the command.
  22. */
  23. cmCommand* Clone() CM_OVERRIDE
  24. {
  25. return new cmIncludeExternalMSProjectCommand;
  26. }
  27. /**
  28. * This is called when the command is first encountered in
  29. * the CMakeLists.txt file.
  30. */
  31. bool InitialPass(std::vector<std::string> const& args,
  32. cmExecutionStatus& status) CM_OVERRIDE;
  33. };
  34. #endif