Загрузка данных
{ "version": "2.0.0", "tasks": [ { "label": "CMake: configure", "type": "shell", "command": "cmake", "args": [ "-S", "${workspaceFolder}", "-B", "${workspaceFolder}/build" ], "options": { "cwd": "${workspaceFolder}" }, "problemMatcher": [] }, { "label": "CMake: build", "type": "shell", "command": "cmake", "args": [ "--build", "${workspaceFolder}/build" ], "options": { "cwd": "${workspaceFolder}" }, "problemMatcher": "$gcc" }, { "label": "Build and run text_analyzer", "type": "shell", "command": "${workspaceFolder}\\build\\text_analyzer.exe", "options": { "cwd": "${workspaceFolder}" }, "dependsOrder": "sequence", "dependsOn": [ "CMake: configure", "CMake: build" ], "problemMatcher": [] }, { "label": "Build and run tests", "type": "shell", "command": "${workspaceFolder}\\build\\text_analyzer_tests.exe", "options": { "cwd": "${workspaceFolder}" }, "dependsOrder": "sequence", "dependsOn": [ "CMake: configure", "CMake: build" ], "problemMatcher": [] } ] }