cmSourceFileLocationKind.h 460 B

123456789101112131415
  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 cmSourceFileLocationKind_h
  4. #define cmSourceFileLocationKind_h
  5. enum class cmSourceFileLocationKind
  6. {
  7. // The location is user-specified and may be ambiguous.
  8. Ambiguous,
  9. // The location is known to be at the given location; do not try to guess at
  10. // extensions or absolute path.
  11. Known
  12. };
  13. #endif