aboutsummaryrefslogtreecommitdiffstats
path: root/code.dev.code-workspace
blob: 934210c5919c3d55c39d2cfeec6ce1f37cbc7313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
  "folders": [
    {
      "path": "."
    }
  ],
  "settings": {
    "C_Cpp.default.compileCommands": "${workspaceFolder}/build-dev/compile_commands.json",
    "C_Cpp.default.cStandard": "c17",
    "files.trimTrailingWhitespace": true,
    "editor.formatOnType": true
  },
  "tasks": {
    "version": "2.0.0",
    "tasks": [
      {
        "type": "shell",
        "label": "cmake",
        "command": "cmake",
        "args": [
          "--preset=dev"
        ],
        "options": {
          "cwd": "${workspaceFolder}/"
        },
        "group": "build"
      },
      {
        "type": "shell",
        "label": "make",
        "command": "cmake",
        "args": [
          "--build",
          "${workspaceFolder}/build-dev"
        ],
        "options": {
          "cwd": "${workspaceFolder}/"
        },
        "group": "build"
      }
    ]
  }
}