From e1b4fba955881c7a896408a3b263d0c7bd373904 Mon Sep 17 00:00:00 2001 From: Samyak Sarnayak Date: Tue, 30 Aug 2022 20:21:26 +0530 Subject: [PATCH] Add reference for updating Windows PATH and fix typo Yes, the reference is a page on Java's documentation but that's the most complete and most official looking reference I could find. --- src/building/prerequisites.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/building/prerequisites.md b/src/building/prerequisites.md index 0783e82e..ad68c20f 100644 --- a/src/building/prerequisites.md +++ b/src/building/prerequisites.md @@ -36,8 +36,10 @@ winget install -e Python.Python.3 winget install -e Kitware.CMake ``` -If any of those is installed already, winget will detect it. -Then edit your systems `PATH` variable and add: `C:\Program Files\CMake\bin`. +If any of those is installed already, winget will detect it. Then edit your system's `PATH` variable +and add: `C:\Program Files\CMake\bin`. See +[this guide on editing the system `PATH`](https://www.java.com/en/download/help/path.html) from the +Java documentation. For more information about building on Windows, see [the `rust-lang/rust` README](https://github.com/rust-lang/rust#building-on-windows).