Skip to content

Commit 215e67d

Browse files
committedMay 8, 2023
Master
1 parent 727c0d7 commit 215e67d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+2100
-0
lines changed
 

‎.vscode/c_cpp_properties.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Mac",
5+
"includePath": [
6+
"${workspaceFolder}/**"
7+
],
8+
"defines": [],
9+
"macFrameworkPath": [
10+
"/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks"
11+
],
12+
"compilerPath": "/usr/bin/clang",
13+
"cStandard": "c17",
14+
"cppStandard": "c++17",
15+
"intelliSenseMode": "macos-clang-arm64"
16+
}
17+
],
18+
"version": 4
19+
}

‎.vscode/launch.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "C/C++: g++ 生成和调试活动文件",
5+
"type": "cppdbg",
6+
"request": "launch",
7+
"program": "${fileDirname}/${fileBasenameNoExtension}",
8+
"args": [],
9+
"stopAtEntry": false,
10+
"cwd": "${fileDirname}",
11+
"environment": [],
12+
"externalConsole": false,
13+
"MIMode": "lldb",
14+
"preLaunchTask": "C/C++: g++ 生成活动文件"
15+
}
16+
],
17+
"version": "2.0.0"
18+
}

0 commit comments

Comments
 (0)
Please sign in to comment.