cmProperty.h 481 B

1234567891011121314151617181920212223242526272829
  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 cmProperty_h
  4. #define cmProperty_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include <string>
  7. class cmProperty
  8. {
  9. public:
  10. enum ScopeType
  11. {
  12. TARGET,
  13. SOURCE_FILE,
  14. DIRECTORY,
  15. GLOBAL,
  16. CACHE,
  17. TEST,
  18. VARIABLE,
  19. CACHED_VARIABLE,
  20. INSTALL
  21. };
  22. };
  23. using cmProp = const std::string*;
  24. #endif