【VSCode】Visual Studio Code使用方法

版权声明:本文为博主学习笔记,未经博主允许可以随便学习,不保证正确,随时更新。 https://blog.csdn.net/ylonge37/article/details/90416393

Visual Studio Code使用方法

Launch调试

"configurations": [
        {
            "name": "(gdb) Launch",
            "type": "cppdbg",
            "request": "launch",
            "program": "${workspaceFolder}/bin/EncoderAppStaticd",
            "args": [
                "-c", "${workspaceFolder}/../test/encoder_randomaccess_vtm.cfg",
                "-c", "${workspaceFolder}/../test/BasketballDrillText.cfg",
                "--QP=37",
                "--FrameSkip=0",
                "--FramesToBeEncoded=49",
                "--LIBVCSkipNum=0",
                "--LIBVCFrameNum=500"
            ],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": false,
            "MIMode": "gdb",
            "setupCommands": [
                {
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ]
        }
    ]

猜你喜欢

转载自blog.csdn.net/ylonge37/article/details/90416393