기본 콘텐츠로 건너뛰기

10월, 2025의 게시물 표시

VSCODE 빌드환경만들기, 디버깅환경 만들기 초간단 예제

 VSCODE 사용하기 편집기가 아니라 빌드환경으로 만들어보기 tasks.json {   "version" : "2.0.0" ,   "tasks" : [     {       "label" : "Build hello_app with make" ,       "type" : "shell" ,       "command" : "make clean && make all" ,       "args" : [],       "options" : {         "cwd" : "${workspaceFolder}/build"       },       "group" : {         "kind" : "build" ,         "isDefault" : true       },       "problemMatcher" : []     }   ] } 편집기가 아니라 디버깅환경으로 만들어보자 launch.json {     // Use IntelliSense to learn about possible attributes.     // Hover to view descriptions of existing attributes.     // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387     "version" : "0.2.0" ,     "configurations" : [...