cmIncludeGuardCommand.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 cmIncludeGuardCommand_h
  4. #define cmIncludeGuardCommand_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include <string>
  7. #include <vector>
  8. #include "cm_memory.hxx"
  9. #include "cmCommand.h"
  10. class cmExecutionStatus;
  11. /** \class cmIncludeGuardCommand
  12. * \brief cmIncludeGuardCommand identical to C++ #pragma_once command
  13. * Can work in 3 modes: GLOBAL (works on global properties),
  14. * DIRECTORY(use directory property), VARIABLE(unnamed overload without
  15. * arguments) define an ordinary variable to be used as include guard checker
  16. */
  17. class cmIncludeGuardCommand : public cmCommand
  18. {
  19. public:
  20. /**
  21. * This is a virtual constructor for the command.
  22. */
  23. std::unique_ptr<cmCommand> Clone() override
  24. {
  25. return cm::make_unique<cmIncludeGuardCommand>();
  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) override;
  33. };
  34. #endif