Browse Source

Merge pull request #5757 from alan-man/fixvsc

fix vs code configuration build tasks.json
Max Hilbrunner 3 years ago
parent
commit
08867d6e4b
1 changed files with 2 additions and 1 deletions
  1. 2 1
      development/cpp/configuring_an_ide/visual_studio_code.rst

+ 2 - 1
development/cpp/configuring_an_ide/visual_studio_code.rst

@@ -41,7 +41,8 @@ Importing the project
       "type": "shell",
       "type": "shell",
       "command": "scons",
       "command": "scons",
       "args": [
       "args": [
-        "-j $(nproc)"
+        "-j",
+        "$(nproc)"
       ],
       ],
       "problemMatcher": "$msCompile"
       "problemMatcher": "$msCompile"
     }
     }