Render animation fixes, vs code tasks

This commit is contained in:
2026-03-15 13:22:53 -04:00
parent 77f6e65b15
commit f58d89425f
12 changed files with 133 additions and 33 deletions

4
.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/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/anm2ed",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",

22
.vscode/tasks.json vendored
View File

@@ -1,10 +1,18 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "run-debug",
"type": "shell",
"command": "cmake -S . -B out/build/linux-debug -DCMAKE_BUILD_TYPE=Debug && cmake --build out/build/linux-debug --parallel 8 --target anm2ed && ./out/build/linux-debug/anm2ed",
"problemMatcher": [
"$gcc"
]
},
{
"label": "build",
"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 --parallel 8 --target anm2ed",
"group": {
"kind": "build",
"isDefault": true
@@ -13,14 +21,22 @@
"$gcc"
]
},
{
"label": "run-release",
"type": "shell",
"command": "cmake -S . -B out/build/linux-release -DCMAKE_BUILD_TYPE=Release && cmake --build out/build/linux-release --parallel 8 --target anm2ed && ./out/build/linux-release/anm2ed",
"problemMatcher": [
"$gcc"
]
},
{
"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 --parallel 8 --target anm2ed",
"group": "build",
"problemMatcher": [
"$gcc"
]
}
]
}
}