diff options
author | WlodekM <[email protected]> | 2025-02-14 19:12:47 +0200 |
---|---|---|
committer | WlodekM <[email protected]> | 2025-02-14 19:12:47 +0200 |
commit | 3bd3984e92fdfb529c37b31c6f0570abab1ed54e (patch) | |
tree | 5462664b63182c895cb70e98a79672d2c3d8a392 /.vscode |
initial commit; beginning work on smolsh
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/c_cpp_properties.json | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..4039bef --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,16 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [], + "compilerPath": "/usr/bin/gcc", + "cStandard": "c17", + "cppStandard": "gnu++17", + "intelliSenseMode": "linux-gcc-x64" + } + ], + "version": 4 +} \ No newline at end of file |