feat: support macos

This commit is contained in:
Kevin Yue
2025-01-03 20:24:28 +08:00
parent 25f1182556
commit d199d9e331
3 changed files with 26 additions and 1 deletions

14
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,14 @@
{
"configurations": [
{
"name": "Mac",
"includePath": ["/opt/homebrew/include"],
"macFrameworkPath": ["/System/Library/Frameworks", "/Library/Frameworks"],
"intelliSenseMode": "macos-clang-x64",
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++17"
}
],
"version": 4
}