0

我需要使用 Visual Studio 代码构建libvpx源代码。然后,运行并调试vp8_multi_resolution_encoder.c

为了构建项目任务,我使用 tasks.json 如下:

{
"version": "0.1.0",
"command": "make",
"isShellCommand": true,
"tasks": [
    {
        "taskName": "Makefile",

        // Make this the default build command.
        "isBuildCommand": true,

        // Show the output window only if unrecognized errors occur.
        "showOutput": "always",

        // Pass 'all' as the build target
        "args": ["all"],

        // Use the standard less compilation problem matcher.
        "problemMatcher": {
            "owner": "c",
            "fileLocation": ["relative", "${workspaceRoot}"],
            "pattern": {
                "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
                "file": 1,
                "line": 2,
                "column": 3,
                "severity": 4,
                "message": 5
            }
        }
    }
]

}

launch.json调试vp8_multi_resolution_encoder的关键配置是什么?

4

0 回答 0