{ "version": "2.0.0", "tasks": [ { "label": "cmake: configure", "type": "shell", "command": "cmake", "args": [ "-S", "${workspaceFolder}", "-B", "${workspaceFolder}/build/vscode-debug", "-DCMAKE_BUILD_TYPE=Debug", "-DCMAKE_EXPORT_COMPILE_COMMANDS=ON" ], "group": "build", "problemMatcher": [] }, { "label": "cmake: build", "type": "shell", "command": "cmake", "args": [ "--build", "${workspaceFolder}/build/vscode-debug", "-j", "8" ], "dependsOn": [ "cmake: configure" ], "group": { "kind": "build", "isDefault": true }, "problemMatcher": [ "$gcc" ] }, { "label": "cmake: install", "type": "shell", "command": "cmake", "args": [ "--install", "${workspaceFolder}/build/vscode-debug", "--verbose" ], "dependsOn": [ "cmake: build" ], "group": "build", "problemMatcher": [] }, { "label": "cmvr_es: run installed", "type": "shell", "command": "${workspaceFolder}/output/bin/cmvr_es", "options": { "cwd": "${workspaceFolder}/output/bin", "env": { "LD_LIBRARY_PATH": "${workspaceFolder}/output/lib:${env:LD_LIBRARY_PATH}" } }, "dependsOn": [ "cmake: install" ], "problemMatcher": [] } ] }