cmInstallMode.h 356 B

1234567891011121314151617
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #pragma once
  4. /**
  5. * Enumerate types known to file(INSTALL).
  6. */
  7. enum class cmInstallMode
  8. {
  9. COPY,
  10. ABS_SYMLINK,
  11. ABS_SYMLINK_OR_COPY,
  12. REL_SYMLINK,
  13. REL_SYMLINK_OR_COPY,
  14. SYMLINK,
  15. SYMLINK_OR_COPY
  16. };