Files
LXC/.vscode/c_cpp_properties.json
Pasha Bibko c59d8cfb5c Setup VSCode build system
Works on both Linux and Windows
2025-08-11 14:09:01 +01:00

26 lines
419 B
JSON

{
"version": 4,
"configurations": [
{
"name": "Linux",
"includePath":
[
"${workspaceFolder}/**"
],
"cppStandard": "c++20"
},
{
"name": "Windows",
"includePath":
[
"${workspaceFolder}/**"
],
"cppStandard": "c++20"
}
]
}