이어서 하는 법을 알려드리겠습니다. tasks.json파일이 열리게 됩니다.

 

 

 

tasks.json파일 안에 이 소스코드를 넣어줍니다.



 {

    // See https://go.microsoft.com/fwlink/?LinkId=733558

    // for the documentation about the tasks.json format

    "version": "2.0.0",

    "tasks": [

        {

            "label": "build_gcc",

            "type": "shell",

            "command": "gcc",

            "args": [

                "-g",

                "-o",

                "${fileDirname}/${fileBasenameNoExtension}.out",

                "${file}"

            ],

            "group": {

                "kind": "build",

                "isDefault": true

            }

        },

        {

            "label": "build_g++",

            "type": "shell",

            "command": "g++",

            "args": [

                "-g",

                "-o",

                "${fileDirname}/${fileBasenameNoExtension}.out",

                "${file}"

            ],

            "group": {

                "kind": "build",

                "isDefault": true

            }

        },

        {

            "label": "exec",

            "type": "shell",

            "command": "${fileDirname}/${fileBasenameNoExtension}.out",

            "group": {

                "kind": "build",

                "isDefault": true

            }

        }

    ]

}

command + 쉬프트 + b 를 눌러 exec를 눌러줍니다!

 

안 될 시 폴더를 한 번 삭제해보고 다시 해보시길 바랍니다. 

+ Recent posts