关于vscode
  • 板块灌水区
  • 楼主吴思诚
  • 当前回复1
  • 已保存回复1
  • 发布时间2023/5/30 21:42
  • 上次更新2023/10/23 14:16:31
查看原帖
关于vscode
371848
吴思诚楼主2023/5/30 21:42

我想同步 tasks.json

{
	"version": "2.0.0",
	"tasks": [
		{
			"type": "cppbuild",
			"label": "C/C++: g++.exe 生成活动文件",
			"command": "g++",
			"args": [
				"-fdiagnostics-color=always",
				"-g",
				"${file}",
				"-o",
				"${fileDirname}/${fileBasenameNoExtension}.exe"
			],
			"options": {
				"cwd": "${fileDirname}"
			},
			"problemMatcher": [
				"$gcc"
			],
			"group": {
				"kind": "build",
				"isDefault": true
			},
			"detail": "编译器: D:\\cpeditor-6.11.1-windows-x64-portable-with-gcc-12.2.0-LLVM-14.0.6\\mingw64\\bin\\g++.exe"
		}
	]
}

我记得之前没有注意就有同步成功过,但是现在怎么不行了

2023/5/30 21:42
加载中...