한동안 자료구조와 알고리즘 공부에 손을 놔서 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/
'프로그래밍 > etc' 카테고리의 다른 글
Compatible side by side NDK version was not found. (0) | 2020.09.14 |
---|---|
Flutter와 React Native를 둘 다 사용하면서 느낀점 (0) | 2020.09.13 |
MySQL mysqldump Version Mismatch (0) | 2020.09.03 |
JWT(JSON Web Token) accessToken, refreshToken (0) | 2020.08.10 |
Mac에서 MySQL 및 Workbench(IDE) 설치 후 JDBC 연결 (0) | 2020.04.30 |