resolve cyclic dependency with zstd
[platform/upstream/cmake.git] / Source / cmProperty.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 class cmProperty
8 {
9 public:
10   enum ScopeType
11   {
12     TARGET,
13     SOURCE_FILE,
14     DIRECTORY,
15     GLOBAL,
16     CACHE,
17     TEST,
18     VARIABLE,
19     CACHED_VARIABLE,
20     INSTALL
21   };
22 };