Created
May 13, 2025 10:12
-
-
Save blumus/feff541d5d3470a0f684526e753844b8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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