Setup VSCode build system

Works on both Linux and Windows
This commit is contained in:
2025-08-11 14:09:01 +01:00
parent 123d5219aa
commit c59d8cfb5c
4 changed files with 97 additions and 1 deletions

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

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