From 494091c6286ba5f076dca68addf4da3dcf0b485282e32718b2029f99f2960a69 Mon Sep 17 00:00:00 2001 From: titor Date: Sun, 15 Dec 2024 20:31:40 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20c/mac/.vscode/launch.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- c/mac/.vscode/launch.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 c/mac/.vscode/launch.json diff --git a/c/mac/.vscode/launch.json b/c/mac/.vscode/launch.json new file mode 100644 index 0000000..fa3dfbc --- /dev/null +++ b/c/mac/.vscode/launch.json @@ -0,0 +1,22 @@ +{ + // 使用 IntelliSense 了解相关属性。 + // 悬停以查看现有属性的描述。 + // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "(lldb) 启动", + "type": "cppdbg", + "request": "launch", + "program": "${fileDirname}/${fileBasenameNoExtension}", + "args": [], + "stopAtEntry": false, + "cwd": "${fileDirname}", + "environment": [], + "externalConsole": false, + "MIMode": "lldb", + "preLaunchTask": "C/C++: clang 生成活动文件" + } + + ] +} \ No newline at end of file