Created
July 13, 2019 06:54
-
-
Save gusenov/d3e66a0d1afd2b303a81d72f0d0e74bb to your computer and use it in GitHub Desktop.
Пример конфигурационного файла c_cpp_properties.json для vscode-cpptools - Microsoft C/C++ расширения для VS Code.
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}/src/**", | |
"${workspaceFolder}/vendor/" | |
], | |
"defines": [], | |
"macFrameworkPath": [ | |
"/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks" | |
], | |
"compilerPath": "/usr/bin/clang", | |
"cStandard": "c11", | |
"cppStandard": "c++17", | |
"intelliSenseMode": "clang-x64", | |
"compileCommands": "${workspaceFolder}/build/compile_commands.json", | |
"browse": { | |
"path": [ | |
"/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/usr/include" | |
], | |
"limitSymbolsToIncludedHeaders": true | |
} | |
} | |
], | |
"version": 4 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment