resolve cyclic dependency with zstd
[platform/upstream/cmake.git] / Source / cmSourceFileLocationKind.h
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 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 };