From a19ad550e70d32307f9e0b4ec0d936d167eb701d Mon Sep 17 00:00:00 2001 From: Matthew Parkinson Date: Tue, 23 Aug 2022 11:08:51 +0100 Subject: [PATCH] Update BUILDING.md (#549) --- docs/BUILDING.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/BUILDING.md b/docs/BUILDING.md index 849a4c8..2dd3ed0 100644 --- a/docs/BUILDING.md +++ b/docs/BUILDING.md @@ -5,13 +5,15 @@ snmalloc uses a CMake build system and can be built on many platforms. # Building on Windows -The Windows build currently depends on Visual Studio 2017. +The Windows build currently depends on at least Visual Studio 2019. +Both Visual Studio 2019 and 2022 are regularly tested in CI. +Additionally, `clang-cl` is also supported and tested by CI. To build with Visual Studio: ``` mkdir build cd build -cmake -G "Visual Studio 15 2017 Win64" .. +cmake -G "Visual Studio 15 2019 Win64" .. cmake --build . --config Debug cmake --build . --config Release cmake --build . --config RelWithDebInfo