VSCode config

This commit is contained in:
2018-05-05 22:19:54 +02:00
parent 90de728726
commit 306d6c1307
4 changed files with 94 additions and 0 deletions

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

@@ -0,0 +1,61 @@
{
"configurations": [
{
"name": "Mac",
"includePath": [
"/usr/include"
],
"browse": {
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": "",
"path": [
"/usr/include",
"${workspaceRoot}"
]
},
"intelliSenseMode": "clang-x64",
"macFrameworkPath": [
"/System/Library/Frameworks",
"/Library/Frameworks"
]
},
{
"name": "Linux",
"includePath": [
"/usr/include"
],
"browse": {
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": "",
"path": [
"/usr/include",
"${workspaceRoot}"
]
},
"intelliSenseMode": "clang-x64"
},
{
"name": "Win32",
"includePath": [
"C:\\msys64\\mingw64\\include",
"C:\\msys64\\mingw64\\x86_64-w64-mingw32\\include"
],
"browse": {
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": "",
"path": [
"C:\\msys64\\mingw64\\include",
"C:\\msys64\\mingw64\\x86_64-w64-mingw32\\include",
"${workspaceRoot}"
]
},
"intelliSenseMode": "msvc-x64",
"cStandard": "c11",
"cppStandard": "c++17",
"defines": [
"WIN32"
]
}
],
"version": 3
}