Skip to content

Commit 203d70e

Browse files
committed
Add C/C++ configuration for macOS in VSCode
1 parent 405ff78 commit 203d70e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.vscode/c_cpp_properties.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Mac",
5+
"includePath": [
6+
"${workspaceFolder}/**",
7+
"/Library/Frameworks/Python.framework/Versions/3.12/include/python3.12"
8+
],
9+
"defines": [],
10+
"macFrameworkPath": [
11+
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
12+
],
13+
"compilerPath": "/usr/bin/clang",
14+
"cStandard": "c17",
15+
"cppStandard": "c++17",
16+
"intelliSenseMode": "macos-clang-arm64"
17+
}
18+
],
19+
"version": 4
20+
}

0 commit comments

Comments
 (0)