1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
| { "Cpp Make Task": { "prefix": "task_make", "body": [ "{", "\t\"tasks\": [", "\t{", "\t\t\t\"type\": \"cppbuild\",", "\t\t\t\"label\": \"Make\",", "\t\t\t\"command\": \"D:\\\\\\\\Programs\\\\\\\\MinGW\\\\\\\\bin\\\\\\\\make.exe\",", "\t\t\t\"args\": [", "\t\t\t\t// \"-g\",", "\t\t\t\t// \"\\${file}\",", "\t\t\t\t// \"-o\",", "\t\t\t\t// \"\\${fileDirname}\\\\\\\\\\${fileBasenameNoExtension}.exe\"", "\t\t\t],", "\t\t\t\"options\": {", "\t\t\t\t\"cwd\": \"\\${workspaceFolder}\"", "\t\t\t},", "\t\t\t\"problemMatcher\": [", "\t\t\t\t\"\\$gcc\"", "\t\t\t],", "\t\t\t\"group\": {", "\t\t\t\t\"kind\": \"build\",", "\t\t\t\t\"isDefault\": true", "\t\t\t},", "\t\t\t\"detail\": \"调试器生成的任务。\"", "\t\t}", "\t],", "\t\"version\": \"2.0.0\"", "}" ], "description": "g++ debug task" }, "Cpp g++ task": { "prefix": "task_g++", "body": [ "{", "\t\"tasks\": [", "\t{", "\t\t\t\"type\": \"cppbuild\",", "\t\t\t\"label\": \"g++\",", "\t\t\t\"command\": \"D:\\\\\\\\Programs\\\\\\\\MinGW\\\\\\\\bin\\\\\\\\g++.exe\",", "\t\t\t\"args\": [", "\t\t\t\t\"-g\",", "\t\t\t\t\"\\${file}\",", "\t\t\t\t\"-o\",", "\t\t\t\t\"\\${fileDirname}\\\\\\\\\\${fileBasenameNoExtension}.exe\"", "\t\t\t],", "\t\t\t\"options\": {", "\t\t\t\t\"cwd\": \"\\${workspaceFolder}\"", "\t\t\t},", "\t\t\t\"problemMatcher\": [", "\t\t\t\t\"\\$gcc\"", "\t\t\t],", "\t\t\t\"group\": {", "\t\t\t\t\"kind\": \"build\",", "\t\t\t\t\"isDefault\": true", "\t\t\t},", "\t\t\t\"detail\": \"调试器生成的任务。\"", "\t\t}", "\t],", "\t\"version\": \"2.0.0\"", "}" ], "description": "g++ debug task" } }
|