Add c_cpp_properties.json file for Linux configuration

This commit is contained in:
Nick Leeman 2024-04-26 22:21:32 +02:00
parent e8a39d9fee
commit 8243491de2

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

@ -0,0 +1,17 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/home/nick/Workspace/defold/engine/**",
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c17",
"cppStandard": "gnu++17",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}