Created
February 24, 2024 13:27
-
-
Save omsharp/1b3ec6aad9e2e881bccf0b8e95f314eb to your computer and use it in GitHub Desktop.
Build task for CMake Tools on VSCode
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
| { | |
| "version": "2.0.0", | |
| "tasks": [ | |
| { | |
| "type": "cmake", | |
| "label": "CMake_build", | |
| "command": "build", | |
| "targets": [ | |
| "ALL_BUILD" | |
| ], | |
| "group": "build", | |
| "problemMatcher": [], | |
| "detail": "CMake build task" | |
| }, | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment