vscode: add macOS configurations

This commit is contained in:
Andrew Udvare 2020-10-08 23:19:55 -04:00
commit 9250b36431
No known key found for this signature in database
GPG key ID: 1AFD9AFC120C26DD
3 changed files with 119 additions and 2 deletions

30
.vscode/c_cpp_properties.json vendored Normal file
View file

@ -0,0 +1,30 @@
{
"configurations": [
{
"name": "Mac",
"includePath": [
"${default}",
"src/fakerw",
"src/math",
"src/render",
"src/skel",
"vendor/librw"
],
"defines": [],
"macFrameworkPath": [
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
],
"compilerPath": "/opt/local/bin/clang",
"compilerArgs": ["-g"],
"cStandard": "gnu11",
"cppStandard": "gnu++14",
"browse": {
"path": [
"/opt/local/include",
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include"
]
}
}
],
"version": 4
}