From 04934e46a973a6d160a8e7fceed8f35d8322e418 Mon Sep 17 00:00:00 2001 From: levlam Date: Tue, 18 Jun 2019 03:00:32 +0300 Subject: [PATCH] Build.html: add note that on WSL and Cygwin Linux instructions need to be used. GitOrigin-RevId: 587191365e852ad855e666565803c83b930d0095 --- build.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.html b/build.html index 7d49ee5e..e372f0cb 100644 --- a/build.html +++ b/build.html @@ -460,6 +460,9 @@ function onOptionsChanged() { var pre_text = []; if (os_windows) { let win10_sdk = (target === 'C++/CX' ? ' and Windows 10 SDK' : ''); + if (target !== 'C++/CLI' && target !== 'C++/CX') { + pre_text.push('Note that Windows Subsystem for Linux (WSL) and Cygwin are not Windows environments, so you need to use instructions for Linux instead for them.'); + } pre_text.push('Download and install Microsoft Visual Studio. Enable C++' + win10_sdk + ' support while installing.'); pre_text.push('Download and install CMake; choose "Add CMake to the system PATH" option while installing.'); pre_text.push('Download and install Git.');