More stuff

This commit is contained in:
Nils O. Selåsdal
2026-06-05 01:11:49 +02:00
parent d4bf858cbb
commit fc7253e412
9 changed files with 119 additions and 25 deletions
+16
View File
@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "lldb",
"request": "launch",
"program": "${workspaceRoot}/a.out",
"args": [],
"cwd": "${workspaceRoot}"
}
]
}
+3
View File
@@ -0,0 +1,3 @@
{
"C_Cpp.default.cStandard": "gnu23"
}
+16
View File
@@ -0,0 +1,16 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "${workspaceFolder}/build.sh && ./a.out",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}