Ctrl+Shift+P를 누르고, type Configure Tasks를 선택 후, tasks.json 파일을 다음과 같이 작성한다.
{
"version": "0.1.0",
"command": "make",
"isShellCommand": true,
"tasks": [
{
"taskName": "Makefile",
// Make this the default build command.
"isBuildCommand": true,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// No args
"args": ["all"],
// Use the standard less compilation problem matcher.
"problemMatcher": {
"owner": "cpp",
"fileLocation": ["relative", "${workspaceRoot}"],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
}
]
}
Ctrl+Shift+B 를 눌러 Make 를 진행한다. 개인 설정에 따라 단축키는 다를 수 있다.

![[C++] Vcpkg 이용하여 boost 라이브러리 설치하기](https://tech.sangron.com/wp-content/uploads/sites/2/2018/10/cpp_wallpaper-768x480.jpg)
![[Ubuntu] apt-get update error (403 Forbidden on nijel/phpmyadmin)](https://tech.sangron.com/wp-content/uploads/sites/2/2017/12/ubuntu_wallpaper_2-768x480.jpg)
![[Crypto Currency] Ubuntu에서 CCMiner로 Mining 시작하기](https://tech.sangron.com/wp-content/uploads/sites/2/2019/02/blank_500x500-768x480.jpg)
![[Python] Python 으로 Shell command 수행하기](https://tech.sangron.com/wp-content/uploads/sites/2/2018/02/python_wallpaper_3-768x480.jpg)