찾다

 >  Q&A  >  본문

visual-studio-code - vscode配置c/c++怎么让编译之后立刻运行?

只是想编译之后立刻运行,像sublime那样从文件读入后输出到下面控制台。
写了个tasks.json

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "0.1.0",
    "tasks": [
        {
            "taskName": "build",
            "command": "g++",
            "isShellCommand": true,
            "args": [
                "-o",
                "${workspaceRoot}/main",
                "${workspaceRoot}/main.cpp"
            ],
            "showOutput": "always"
        },
        {
            "taskName": "run",
            "command": "${workspaceRoot}/main",
            "isShellCommand": true,
            "showOutput": "always"
        }
    ]
}

为啥,第二个任务不会运行。。

高洛峰高洛峰2805일 전626

모든 응답(1)나는 대답할 것이다

  • 天蓬老师

    天蓬老师2017-04-17 15:27:32

    이제 VS Code 작업이 지속적으로 실행되지 않습니다.

    해결책:

    1. 스크립팅, msbuild, make 등과 같은 외부 도구를 사용하세요.

    2. 중단점을 추가하지 않고 디버깅을 구성합니다. 컴파일 후 F5를 눌러 실행합니다.

    2017년 3월 2일 업데이트됨:

    VS Code 1.10은 여러 작업 결합을 지원하며 단일 작업에 대한 단축키를 설정할 수도 있습니다.

    회신하다
    0
  • 취소회신하다