79246290

Date: 2024-12-03 04:50:10
Score: 0.5
Natty:
Report link

Based on @wesley-banfield 's answer, I got it ran sucessfully:

{
    "tasks": [
        {
            "type": "shell",
            "options": {
              "shell": {
                "args": ["-i"]
              },
              "cwd": "${workspaceFolder}"
            },
            "label": "C/C++: g++ build active file",
            "command": "conda activate test; cmake --build build -j 256",
            "problemMatcher": [
                "$gcc"
            ],
            "group": "build",
            "detail": "compiler: /usr/bin/g++"
        }
    ],
    "version": "2.0.0"
}

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @wesley-banfield
  • Low reputation (0.5):
Posted by: scruel