Files
anm2ed/.vscode/tasks.json

97 lines
2.9 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "run-debug",
<<<<<<< HEAD
"type": "shell",
"command": "cmake",
"args": [
"-S",
".",
"-B",
"out/build/linux-debug",
"-DCMAKE_BUILD_TYPE=Debug"
],
"problemMatcher": [
"$gcc"
]
},
{
"label": "build-debug",
"type": "shell",
"command": "cmake",
"args": [
"--build",
"out/build/linux-debug",
"--target",
"anm2ed"
],
"dependsOn": "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 -S . -B out/build/linux-debug -DCMAKE_BUILD_TYPE=Debug && cmake --build out/build/linux-debug --parallel 8 --target anm2ed",
>>>>>>> f58d894 (Render animation fixes, vs code tasks)
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$gcc"
]
},
{
"label": "run-release",
"type": "shell",
<<<<<<< HEAD
"command": "cmake",
"args": [
"-S",
".",
"-B",
"out/build/linux-release",
"-DCMAKE_BUILD_TYPE=Release"
],
=======
"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",
>>>>>>> f58d894 (Render animation fixes, vs code tasks)
"problemMatcher": [
"$gcc"
]
},
{
"label": "build-release",
"type": "shell",
<<<<<<< HEAD
"command": "cmake",
"args": [
"--build",
"out/build/linux-release",
"--target",
"anm2ed"
],
"dependsOn": "run-release",
=======
"command": "cmake -S . -B out/build/linux-release -DCMAKE_BUILD_TYPE=Release && cmake --build out/build/linux-release --parallel 8 --target anm2ed",
>>>>>>> f58d894 (Render animation fixes, vs code tasks)
"group": "build",
"problemMatcher": [
"$gcc"
]
},
{
"label": "build",
"dependsOn": "build-debug",
"group": "build",
"problemMatcher": []
}
]
}