From 4fd56dfdfc2928b3781b41eaf4f0f407781e0a01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=85ke=20Hedman?= Date: Thu, 15 Feb 2024 21:29:55 +0100 Subject: [PATCH] Added info onhow to set build type in windows --- .vscode/settings.json | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 42610b7..ea1b74d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -18,7 +18,7 @@ // Controls how suggestions are pre-selected when showing the suggest list "editor.suggestSelection": "recentlyUsed", // Enable word based suggestions - "editor.wordBasedSuggestions": true, + "editor.wordBasedSuggestions": "matchingDocuments", // Enable parameter hints "editor.parameterHints.enabled": true, "files.associations": { diff --git a/README.md b/README.md index 37732a0..64dcf9a 100644 --- a/README.md +++ b/README.md @@ -134,10 +134,10 @@ The path to the vspkg build script (_E:\vcpkg\scripts\buildsystems.._) is obviou Now use ```bash - cmake --build . + cmake --build . --config Release ``` -to build the dynamic library. An alternative is to use +to build the dynamic library (Relase or Debug). An alternative is to use ```bash msbuild libvscphelper.sln /p:Configuration=Release