chore: Update compiler config file

This commit is contained in:
Francois Best 2020-04-24 06:49:55 +02:00
parent aa4912b587
commit 116dba12eb
1 changed files with 13 additions and 4 deletions

View File

@ -18,7 +18,10 @@
"macFrameworkPath": [
"/System/Library/Frameworks",
"/Library/Frameworks"
]
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c11",
"cppStandard": "c++17"
},
{
"name": "Linux",
@ -32,7 +35,10 @@
"/usr/include"
]
},
"intelliSenseMode": "clang-x64"
"intelliSenseMode": "clang-x64",
"compilerPath": "/usr/bin/clang",
"cStandard": "c11",
"cppStandard": "c++17"
},
{
"name": "Win32",
@ -46,8 +52,11 @@
"c:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include"
]
},
"intelliSenseMode": "msvc-x64"
"intelliSenseMode": "msvc-x64",
"compilerPath": "/usr/bin/clang",
"cStandard": "c11",
"cppStandard": "c++17"
}
],
"version": 3
"version": 4
}