📂 ETC

[VSCode] MAC C++ task.json

dhyuck 2021. 6. 20. 22:39
반응형

MAC C++ task.json

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558 
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "type": "shell",
            "label": "C++ build with g++",
            "command": "g++",
            "args": [
                "-std=c++17",
                "-g",
                "${file}",
                "-o",
                "${fileDirname}/${fileBasenameNoExtension}.out",

                "&&",   // File I/O redirect
                "${fileDirname}/${fileBasenameNoExtension}.out",
                "<",
                "${fileDirname}/input.txt",
                ">",
                "${fileDirname}/output.txt"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "presentation": {   //Explained in detail below
                "echo": false,
                "reveal": "always",
                "focus": true,
                "panel": "shared",
                "clear": false,
                "showReuseMessage": false
            },
            "problemMatcher": []
        }
    ]
}
반응형

'📂 ETC' 카테고리의 다른 글

[여행] 후쿠오카 메모  (0) 2023.08.20
IT 무료 공개 책  (0) 2022.03.16
[VSCode] 파이썬 인터프리터 바꾸기  (0) 2021.08.26
[MAC] MAC 호스트 네임 변경하기  (0) 2021.08.22
[Mac] 맥북 캡쳐하는 법  (0) 2021.08.13