mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-14 02:08:27 +08:00
26 lines
410 B
C++
26 lines
410 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file LICENSE.rst or https://cmake.org/licensing for details. */
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace cm {
|
|
namespace VS {
|
|
/** Known versions of Visual Studio. */
|
|
enum class Version : std::uint16_t
|
|
{
|
|
VS14 = 140,
|
|
VS15 = 150,
|
|
VS16 = 160,
|
|
VS17 = 170,
|
|
VS18 = 180,
|
|
};
|
|
|
|
enum class VersionExpress
|
|
{
|
|
No,
|
|
Yes,
|
|
};
|
|
}
|
|
}
|