From ccbb18f70bdbd66d41efcd451bed55bdbabe4c22 Mon Sep 17 00:00:00 2001 From: Irina Yatsenko Date: Wed, 17 Jun 2020 12:15:00 -0700 Subject: [PATCH 1/3] Added required steps to successfully run bootstrap.cmd on Windows --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index eab23b86ae4..8136ff7e484 100644 --- a/README.md +++ b/README.md @@ -38,8 +38,10 @@ To build on Windows: * Install [CMake](https://cmake.org/install/) * Install [Visual Studio 2019 (version 16.3 or later)](https://visualstudio.microsoft.com/downloads/). Make sure you install the following workloads: * **Desktop development with C++** + * **From the Individual Components tab in VS Installer add Spectre-mitigated libs that match your C++ build tools version** * **.NET Core 3 cross-platform development** 2. Run [bootstrap.cmd](bootstrap.cmd) from the `Developer Command Prompt for VS 2019`. + * pre-req (in PowerShell): Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser * This script prepares and builds the native (C++) full-state simulator. * You only need to run it once. 3. Open and build the [`Simulation.sln`](./Simulation.sln) solution in Visual Studio. From e96d8e4834d9e98212b3f18c427a964cb083f9ba Mon Sep 17 00:00:00 2001 From: Irina Yatsenko Date: Wed, 17 Jun 2020 12:16:39 -0700 Subject: [PATCH 2/3] Use spaces instead of tabs --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8136ff7e484..6dc4826fc6e 100644 --- a/README.md +++ b/README.md @@ -38,10 +38,10 @@ To build on Windows: * Install [CMake](https://cmake.org/install/) * Install [Visual Studio 2019 (version 16.3 or later)](https://visualstudio.microsoft.com/downloads/). Make sure you install the following workloads: * **Desktop development with C++** - * **From the Individual Components tab in VS Installer add Spectre-mitigated libs that match your C++ build tools version** + * **From the Individual Components tab in VS Installer add Spectre-mitigated libs that match your C++ build tools version** * **.NET Core 3 cross-platform development** 2. Run [bootstrap.cmd](bootstrap.cmd) from the `Developer Command Prompt for VS 2019`. - * pre-req (in PowerShell): Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser + * pre-req (in PowerShell): Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser * This script prepares and builds the native (C++) full-state simulator. * You only need to run it once. 3. Open and build the [`Simulation.sln`](./Simulation.sln) solution in Visual Studio. From 6ad9a8c3e1d6defe9a835b9bf53933ffc6462688 Mon Sep 17 00:00:00 2001 From: Irina Yatsenko Date: Wed, 17 Jun 2020 12:48:48 -0700 Subject: [PATCH 3/3] mark the PS command as code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6dc4826fc6e..1ca5e0ef659 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ To build on Windows: * **From the Individual Components tab in VS Installer add Spectre-mitigated libs that match your C++ build tools version** * **.NET Core 3 cross-platform development** 2. Run [bootstrap.cmd](bootstrap.cmd) from the `Developer Command Prompt for VS 2019`. - * pre-req (in PowerShell): Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser + * pre-req (in PowerShell): `Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser` * This script prepares and builds the native (C++) full-state simulator. * You only need to run it once. 3. Open and build the [`Simulation.sln`](./Simulation.sln) solution in Visual Studio.