Created
February 25, 2020 09:46
-
-
Save sonsongithub/c394733633cfb6c1cbb7c9d951808f80 to your computer and use it in GitHub Desktop.
c_cpp_properties.json for Visual studio code for llvm development.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "configurations": [ | |
| { | |
| "name": "Mac", | |
| "includePath": [ | |
| "${workspaceFolder}/**", | |
| "/usr/local/opt/llvm/include/" | |
| ], | |
| "defines": [], | |
| "macFrameworkPath": [ | |
| "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks" | |
| ], | |
| "compilerPath": "/usr/bin/clang", | |
| "cStandard": "c11", | |
| "cppStandard": "c++17", | |
| "intelliSenseMode": "clang-x64" | |
| } | |
| ], | |
| "version": 4 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment