cmInstallType.h 479 B

1234567891011121314151617181920
  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 cmInstallType_h
  4. #define cmInstallType_h
  5. /**
  6. * Enumerate types known to file(INSTALL).
  7. */
  8. enum cmInstallType
  9. {
  10. cmInstallType_EXECUTABLE,
  11. cmInstallType_STATIC_LIBRARY,
  12. cmInstallType_SHARED_LIBRARY,
  13. cmInstallType_MODULE_LIBRARY,
  14. cmInstallType_FILES,
  15. cmInstallType_PROGRAMS,
  16. cmInstallType_DIRECTORY
  17. };
  18. #endif