Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "Compile Selected CPP File",
- "type": "shell",
- "command": "g++",
- "args": [],
- "presentation": {
- "echo": true,
- "reveal": "always",
- "focus": true,
- "panel": "shared"
- },
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "dependsOn": "listCppFiles"
- },
- {
- "label": "List CPP Files",
- "type": "shell",
- "command": "bash",
- "args": [
- "-c",
- "ls -1 ${workspaceFolder}/**/*.cpp"
- ],
- "problemMatcher": [],
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "identifier": "listCppFiles"
- }
- ]
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement