let's actually stage those changes...

This commit is contained in:
2026-03-09 23:09:37 -04:00
parent 2d27b7e8fb
commit c11b404392
127 changed files with 1200 additions and 427 deletions

6
.vscode/launch.json vendored
View File

@@ -5,7 +5,7 @@
"name": "Debug",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/anm2ed",
"program": "${workspaceFolder}/out/build/linux-debug/bin/anm2ed",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
@@ -28,7 +28,7 @@
"name": "Release",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build-release/anm2ed",
"program": "${workspaceFolder}/out/build/linux-release/bin/anm2ed",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
@@ -48,4 +48,4 @@
]
}
]
}
}

12
.vscode/tasks.json vendored
View File

@@ -2,9 +2,9 @@
"version": "2.0.0",
"tasks": [
{
"label": "build",
"label": "build-debug",
"type": "shell",
"command": "cmake --build build --target anm2ed",
"command": "cmake -S . -B out/build/linux-debug -DCMAKE_BUILD_TYPE=Debug && cmake --build out/build/linux-debug --target anm2ed",
"group": {
"kind": "build",
"isDefault": true
@@ -16,11 +16,17 @@
{
"label": "build-release",
"type": "shell",
"command": "cmake -S . -B build-release -DCMAKE_BUILD_TYPE=Release && cmake --build build-release --target anm2ed",
"command": "cmake -S . -B out/build/linux-release -DCMAKE_BUILD_TYPE=Release && cmake --build out/build/linux-release --target anm2ed",
"group": "build",
"problemMatcher": [
"$gcc"
]
},
{
"label": "build",
"dependsOn": "build-debug",
"group": "build",
"problemMatcher": []
}
]
}