Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 523 Bytes

VSCode.md

File metadata and controls

28 lines (22 loc) · 523 Bytes

VSCode basics

Running a Makefile

  • Within the root of the project, create .vscode/tasks.json with the following content:
{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "make",
            "type": "shell",
            "command": "make",
            "problemMatcher": [],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}
  • Run vscode within the project root (code .), and press ctrl+shift+B