resolve cyclic dependency with zstd
[platform/upstream/cmake.git] / Source / cmCustomCommandTypes.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 #include "cmConfigure.h" // IWYU pragma: keep
6
7 #include <string>
8
9 /** Target custom command type */
10 enum class cmCustomCommandType
11 {
12   PRE_BUILD,
13   PRE_LINK,
14   POST_BUILD
15 };
16
17 /** Where the command originated from. */
18 enum class cmCommandOrigin
19 {
20   Project,
21   Generator
22 };
23
24 /** How to handle custom commands for object libraries */
25 enum class cmObjectLibraryCommands
26 {
27   Reject,
28   Accept
29 };