[dev] Add devcontainers and vscode config templates

This commit is contained in:
Christian Meffert
2024-10-03 07:56:32 +02:00
committed by Alain Nussbaumer
parent 9fbd07a75d
commit 2fe6969f72
13 changed files with 1088 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/usr/include/json-c"
],
"defines": [],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "linux-clang-x64"
}
],
"version": 4
}