Files
cmake/Source/cmVSVersion.h
Brad King 5b0aee4961 Drop Visual Studio 14 2015 generator
This generator has been deprecated since CMake 4.2.  Remove it.
2026-07-03 11:53:32 -04:00

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,
};
}
}