mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
19 lines
351 B
C++
19 lines
351 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
|
|
{
|
|
VS15 = 150,
|
|
VS16 = 160,
|
|
VS17 = 170,
|
|
VS18 = 180,
|
|
};
|
|
}
|
|
}
|