{ "version": "2.0.0", "tasks": [ { "label": "Configure Debug x64", "type": "process", "command": "cmake", "args": [ "--preset", "vs2022-x64-debug" ], "problemMatcher": "$msCompile" }, { "label": "Build RenderCadenceCompositor Debug x64", "type": "process", "command": "cmake", "args": [ "--build", "${workspaceFolder}\\build\\vs2022-x64-debug", "--config", "Debug", "--target", "RenderCadenceCompositor", "--parallel" ], "group": { "kind": "build", "isDefault": true }, "dependsOn": "Configure Debug x64", "problemMatcher": "$msCompile" }, { "label": "Build RenderCadenceCompositor Release x64", "type": "process", "command": "cmake", "args": [ "--build", "${workspaceFolder}\\build\\vs2022-x64-release", "--config", "Release", "--target", "RenderCadenceCompositor", "--parallel" ], "group": "build", "problemMatcher": "$msCompile" }, { "label": "Run Native Tests Debug x64", "type": "process", "command": "cmake", "args": [ "--build", "${workspaceFolder}\\build\\vs2022-x64-debug", "--config", "Debug", "--target", "RUN_TESTS", "--parallel" ], "group": "test", "dependsOn": "Configure Debug x64", "problemMatcher": "$msCompile" }, { "label": "Clean Debug x64", "type": "process", "command": "cmake", "args": [ "--build", "${workspaceFolder}\\build\\vs2022-x64-debug", "--config", "Debug", "--target", "clean" ], "problemMatcher": "$msCompile" } ] }