Render animation fixes, vs code tasks
This commit is contained in:
2
.vscode/launch.json
vendored
2
.vscode/launch.json
vendored
@@ -5,6 +5,7 @@
|
||||
"name": "Debug",
|
||||
"type": "cppdbg",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "build-debug",
|
||||
"program": "${workspaceFolder}/out/build/linux-debug/bin/anm2ed",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
@@ -28,6 +29,7 @@
|
||||
"name": "Release",
|
||||
"type": "cppdbg",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "build-release",
|
||||
"program": "${workspaceFolder}/out/build/linux-release/bin/anm2ed",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
|
||||
48
.vscode/tasks.json
vendored
48
.vscode/tasks.json
vendored
@@ -1,10 +1,32 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "run-debug",
|
||||
"type": "shell",
|
||||
"command": "cmake",
|
||||
"args": [
|
||||
"-S",
|
||||
".",
|
||||
"-B",
|
||||
"out/build/linux-debug",
|
||||
"-DCMAKE_BUILD_TYPE=Debug"
|
||||
],
|
||||
"problemMatcher": [
|
||||
"$gcc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "build-debug",
|
||||
"type": "shell",
|
||||
"command": "cmake -S . -B out/build/linux-debug -DCMAKE_BUILD_TYPE=Debug && cmake --build out/build/linux-debug --target anm2ed",
|
||||
"command": "cmake",
|
||||
"args": [
|
||||
"--build",
|
||||
"out/build/linux-debug",
|
||||
"--target",
|
||||
"anm2ed"
|
||||
],
|
||||
"dependsOn": "run-debug",
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
@@ -13,10 +35,32 @@
|
||||
"$gcc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "run-release",
|
||||
"type": "shell",
|
||||
"command": "cmake",
|
||||
"args": [
|
||||
"-S",
|
||||
".",
|
||||
"-B",
|
||||
"out/build/linux-release",
|
||||
"-DCMAKE_BUILD_TYPE=Release"
|
||||
],
|
||||
"problemMatcher": [
|
||||
"$gcc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "build-release",
|
||||
"type": "shell",
|
||||
"command": "cmake -S . -B out/build/linux-release -DCMAKE_BUILD_TYPE=Release && cmake --build out/build/linux-release --target anm2ed",
|
||||
"command": "cmake",
|
||||
"args": [
|
||||
"--build",
|
||||
"out/build/linux-release",
|
||||
"--target",
|
||||
"anm2ed"
|
||||
],
|
||||
"dependsOn": "run-release",
|
||||
"group": "build",
|
||||
"problemMatcher": [
|
||||
"$gcc"
|
||||
|
||||
Reference in New Issue
Block a user