From 0760f3945a92f31137bcd2587c9e403258fe9454 Mon Sep 17 00:00:00 2001 From: Arik Date: Fri, 21 Jan 2022 06:50:01 -0500 Subject: [PATCH] Update BUILDING.md !. ATL/MFC components (v14.22) are not included by default in the C++ development kit, but are needed to compile the project. 2. In Windows (not checked for Linux distributions), cmake will build a Debug version of the software. Since cmake will check for information marked as "Release" to install the application by default (and not Debug), I think that it is fair to explicitly tell the persons who only want to install the project to build a "Release" version of the software. Signed-off-by: BBArikL Reference-to: https://github.com/tenacityteam/tenacity/pull/688 --- BUILDING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index d08d5e9e4..b4758f6a8 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -207,7 +207,7 @@ If you switch between system packages and vcpkg, you may need to delete Install [Microsoft Visual Studio](https://visualstudio.microsoft.com/vs/community/) -with the **Desktop development with C++** installation option. +with the **Desktop development with C++** installation option. Microsoft's ATL/MFC components are also needed to build the application. Installing [sccache](https://github.com/mozilla/sccache) is highly recommended for faster builds but not required. CMake will automatically use sccache if you @@ -291,13 +291,13 @@ cmake -G Ninja -S . -B build Build Tenacity: ``` -cmake --build build +cmake --build build --config Release ``` Run Tenacity: ``` -build/bin/Debug/tenacity +build/bin/Release/tenacity ``` Optionally, install Tenacity: