diff options
| author | Andrew Udvare <audvare@gmail.com> | 2020-10-08 23:19:55 -0400 |
|---|---|---|
| committer | Andrew Udvare <audvare@gmail.com> | 2020-10-08 23:19:55 -0400 |
| commit | 9250b36431de23ae52511672e080a9cb1afc1999 (patch) | |
| tree | f7786a4c53a027245b3f086e92c3abb82a645b3e /.vscode/c_cpp_properties.json | |
| parent | vscode: Linux: add release configurations (diff) | |
| download | re3-9250b36431de23ae52511672e080a9cb1afc1999.tar.gz | |
vscode: add macOS configurations
Diffstat (limited to '.vscode/c_cpp_properties.json')
| -rw-r--r-- | .vscode/c_cpp_properties.json | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 00000000..f284b5eb --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -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 +} |
