Warning, /sdk/clazy/code.dev.code-workspace is written in an unsupported language. File is not indexed.

0001 {
0002   "folders": [
0003     {
0004       "path": "."
0005     }
0006   ],
0007   "settings": {
0008     "C_Cpp.default.compileCommands": "${workspaceFolder}/build-dev/compile_commands.json",
0009     "C_Cpp.default.cStandard": "c17",
0010     "files.trimTrailingWhitespace": true,
0011     "editor.formatOnType": true
0012   },
0013   "tasks": {
0014     "version": "2.0.0",
0015     "tasks": [
0016       {
0017         "type": "shell",
0018         "label": "cmake",
0019         "command": "cmake",
0020         "args": [
0021           "--preset=dev"
0022         ],
0023         "options": {
0024           "cwd": "${workspaceFolder}/"
0025         },
0026         "group": "build"
0027       },
0028       {
0029         "type": "shell",
0030         "label": "make",
0031         "command": "cmake",
0032         "args": [
0033           "--build",
0034           "${workspaceFolder}/build-dev"
0035         ],
0036         "options": {
0037           "cwd": "${workspaceFolder}/"
0038         },
0039         "group": "build"
0040       }
0041     ]
0042   }
0043 }