blob: 298e59f4e2baf420b53b6c4d0e75bfa168aea443 [file]
/* 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,
};
}
}