From 74249514397256c2129835951884cc2ff6b6b1da Mon Sep 17 00:00:00 2001 From: alan-man Date: Sun, 10 Apr 2022 16:03:34 -0700 Subject: [PATCH] fix vs code configuration build tasks.json With recent versions of vs code (from version 1.66), arguments must be split to be resolved. --- development/cpp/configuring_an_ide/visual_studio_code.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/development/cpp/configuring_an_ide/visual_studio_code.rst b/development/cpp/configuring_an_ide/visual_studio_code.rst index de037cc9f..78d6de3cc 100644 --- a/development/cpp/configuring_an_ide/visual_studio_code.rst +++ b/development/cpp/configuring_an_ide/visual_studio_code.rst @@ -41,7 +41,8 @@ Importing the project "type": "shell", "command": "scons", "args": [ - "-j $(nproc)" + "-j", + "$(nproc)" ], "problemMatcher": "$msCompile" }