1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-05-09 23:08:18 +08:00
CMake/Source/cmProperty.h
2021-09-21 17:14:04 +02:00

23 lines
389 B
C++

/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#pragma once
#include "cmConfigure.h" // IWYU pragma: keep
class cmProperty
{
public:
enum ScopeType
{
TARGET,
SOURCE_FILE,
DIRECTORY,
GLOBAL,
CACHE,
TEST,
VARIABLE,
CACHED_VARIABLE,
INSTALL
};
};