resolve cyclic dependency with zstd
[platform/upstream/cmake.git] / Source / cmInstallMode.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 /**
6  * Enumerate types known to file(INSTALL).
7  */
8 enum class cmInstallMode
9 {
10   COPY,
11   ABS_SYMLINK,
12   ABS_SYMLINK_OR_COPY,
13   REL_SYMLINK,
14   REL_SYMLINK_OR_COPY,
15   SYMLINK,
16   SYMLINK_OR_COPY
17 };