Skip to content

Instantly share code, notes, and snippets.

@blumus
Created May 13, 2025 10:12
Show Gist options
  • Save blumus/feff541d5d3470a0f684526e753844b8 to your computer and use it in GitHub Desktop.
Save blumus/feff541d5d3470a0f684526e753844b8 to your computer and use it in GitHub Desktop.
// tasks.json
{
"version": "2.0.0",
"tasks": [
{
"label": "Cmake init",
"type": "shell",
"command": "cmake -G 'Unix Makefiles' .",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": []
},
{
"label": "Make",
"type": "shell",
"command": "/usr/bin/make",
"options": {
"cwd": "${workspaceFolder}"
},
"group": "test"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment