한동안 자료구조와 알고리즘 공부에 손을 놔서 6월달부터 향후 1년간 빠짐없이 공부하려고 한다...

이를 위해 mac 노트북에 C++ 작업 환경을 구축할 필요가 있었으며,

VS Code 상에서 C++ 빌드하는 방법을 기록해둔다.

 

 

task.json 생성 후 task를 아래와 같이 변경한다.

"tasks": [
        {
            "label": "build file",
            "type": "shell",
            "command": "g++",
            "args": [
                "-o",
                "${fileDirname}/${fileBasenameNoExtension}",
                "${file}"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "problemMatcher": [
                "$gcc"
            ]
        },
        {
            "label": "run file",
            "type": "shell",
            "command": "${fileDirname}/${fileBasenameNoExtension}",
            "args": [
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "problemMatcher": []
        },
    ]

 

이후 cmd + shift + B 를 누르고 Build -> run 순으로 진행한다.

 

출처 : https://younghk.github.io/VS-Code-C++-Configuration-For-Mac/

+ Recent posts