MSVC를 사용해서 VSCode 에서 빌드 하는방법.
처음에 뭔가 오류 나고 빌드가 되지 않아서 이것저것 찾아봄
참고
https://code.visualstudio.com/docs/cpp/config-msvc
Visual Studio 에서 그냥 코딩하면 되는데 VSCode 를 한번 써보겠다고... 삽질 후 해결
오류 문구도 안보여서...
결론
tasks.json 파일에 VsDevCmd.bat 수행 구문을 추가한다.
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": [
"/C",
// The path to VsDevCmd.bat depends on the version of Visual Studio you have installed.
"\"C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/Tools/VsDevCmd.bat\"",
"&&"
]
}
}
},
그 아래쪽
tasks > type 항목도 "type": "cppbuild" 에서 "type": "shell" 로 필히 수정
완성.