알짜게시판

VS Code 설치방법

1. <A HREF="https://sourceforge.net/projects/mingw/files/Installer/" TARGET="_blank"  rel="nofollow">https://sourceforge.net/projects/mingw/files/Installer/</A>
2. mingw-get-setup.exe 다운로드 후 실행
3. 기본 옵션으로 설치
4. MinGW 설치 매니저창에서 Basic Setup - mingw-developer-toolkit, mingw32-base, mingw32-gcc-g++ 체크
  (msys-base 도 생각해봄)
5. 메뉴 - Install - Apply Change
6. Apply 클릭
7. sysdm.cpl
8. 고급 - 환경 변수
9. 시스템 변수 - Path - C:\MinGW\bin 추가

10. VS Code 설치
11. 메뉴 - View - Extensions
12. "korean" 검색
13. Korean Language Pack for Visual Studio Code 선택 및 인스톨
14. VS Code 재시작
15. 메뉴 - 이동 - 파일로 이동
    "ext install c/c++" 입력
16. C/C++ - 설치

20. 메뉴 - 파일 - 기본 설정 - 바로 가기 키
[code]
// 키 바인딩을 이 파일에 넣어서 기본값을 덮어씁니다.
[
    //컴파일
    { "key": "ctrl+f9", "command": "workbench.action.tasks.build" },
   
    //실행
    { "key": "f9", "command": "workbench.action.tasks.test" }
]
[/code]
16. 메뉴 - 터미널 - 기본 빌드 작업 구성
17. "템플릿에서 tasks.json 파일 만들기" 선택
18. "Other 임의의 외부 명령을 실행하는 예" 선택
19. tasks.json 을 아래 내용으로 교체
[code]
{
    "version": "2.0.0",
    "runner": "terminal",
    "type": "shell",
    "echoCommand": true,
    "presentation" : { "reveal": "always" },
    "tasks": [
          //C++ 컴파일
          {
            "label": "save and compile for C++",
            "command": "g++",
            "args": [
                "${file}",
                "-o",
                "${fileDirname}/${fileBasenameNoExtension}"
            ],
            "group": "build",

            //컴파일시 에러를 편집기에 반영
            //참고:  <A HREF="https://code.visualstudio.com/docs/editor/tasks#_defining-a-problem-matcher" TARGET="_blank"  rel="nofollow">https://code.visualstudio.com/docs/editor/tasks#_defining-a-problem-matcher</A>

            "problemMatcher": {
                "fileLocation": [
                    "relative",
                    "${workspaceRoot}"
                ],
                "pattern": {
                    // The regular expression.
                  //Example to match: helloWorld.c:5:3: warning: implicit declaration of function &#039;prinft&#039;
                    "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning error):\\s+(.*)$",
                    "file": 1,
                    "line": 2,
                    "column": 3,
                    "severity": 4,
                    "message": 5
                }
            }
        },
        //C 컴파일
        {
            "label": "save and compile for C",
            "command": "gcc",
            "args": [
                "${file}",
                "-o",
                "${fileDirname}/${fileBasenameNoExtension}"
            ],
            "group": "build",

            //컴파일시 에러를 편집기에 반영
            //참고:  <A HREF="https://code.visualstudio.com/docs/editor/tasks#_defining-a-problem-matcher" TARGET="_blank"  rel="nofollow">https://code.visualstudio.com/docs/editor/tasks#_defining-a-problem-matcher</A>

            "problemMatcher": {
                "fileLocation": [
                    "relative",
                    "${workspaceRoot}"
                ],
                "pattern": {
                    // The regular expression.
                  //Example to match: helloWorld.c:5:3: warning: implicit declaration of function &#039;prinft&#039;
                    "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning error):\\s+(.*)$",
                    "file": 1,
                    "line": 2,
                    "column": 3,
                    "severity": 4,
                    "message": 5
                }
            }
        },

        // 바이너리 실행(Windows)
        {
            "label": "execute",
            "command": "cmd",
            "group": "test",
            "args": [
                "/C", "${fileDirname}\\${fileBasenameNoExtension}"
            ]
   
        }
    ]
}
[/code]
21. 메뉴 - 파일 - 기본 설정 - 설정
22. 보기 - 명령 팔레트
23. C/C++ 검색
24. C/C++: Edit Configurations 선택
번호 제목 글쓴이 조회 날짜
237 [Delphi] 실행 중인 프로세스가 활성 창인지 확인하는 함수 19,587 11-02
236 [Delphi] 메세지 다이어그램(Message Dialog) 에 체크박스(CheckBox) 추가 21,864 10-30
235 [그누보드] 부트스트랩 테마 예제로 사용중인 main.php 29,046 10-21
234 [그누보드] 유튜브 스킨 34,928 10-14
233 [윈도우] TLS 연결 끊김 해결 방법 - Kyber 비활성화 36,112 10-12
232 [PHP] 검색 로봇 접속시 종료 39,911 10-07
231 [윈도우] WinDivert 사용중인 어플리케이션 검색 42,761 09-12
230 [워드프레스] 답글 남기기 메시지 변경 41,949 09-05
229 [리눅스] PHP-FPM 튜닝을 위한 메모리 계산 40,444 08-29
228 [윈도우] 아이폰 벨소리 쉽게 추가하기 93,269 06-14
227 [윈도우] C:\Windows\Installer 폴더 다른 드라이브로 옮기기 103,722 05-29
226 작업 표시줄 (기타 시스템 트레이 아이콘) 제거 프로그램 108,308 05-18
225 [워드프레스] cdn.jsdelivr.net 에서 ssl 인증서 오류 문제 101,442 05-02
224 [그누보드] cdn.jsdelivr.net 에서 ssl 인증서 오류 문제 96,791 05-02
223 [PHP] REQUEST 값 받기(application/json 포함) 98,419 04-20
222 [Linux] 데몬(systemd service) 작성 및 실행하기 65,278 03-14
221 [PHP] Porto 테마에서 포스팅만 Loading Overlay 57,609 03-08
220 [그누보드] 아이디 대신 이메일로 회원 가입하기 87,913 02-02
219 [시크릿DNS] Kaspersky 백신 사용시 DNS 암호화 관련 4 98,034 01-04
218 [칼무리] 영역화면 크기 오류인 경우 120,854 12-12
217 [MySQL] 업데이트 이후 에러 발생([ERROR] Incorrect definition of table … 91,015 12-08
216 구글 크롬 탭검색 비활성화 71,739 12-04
215 [MySQL] MySQL, MariaDB 업데이트 73,216 11-24
214 [아이폰] HTTPS 감청 우회하기 190,954 11-01
213 Windows에 Rust 설치하기 57,027 10-05
212 HTTPS/DNS 차단 쉽게 이해하기 84,069 08-16
211 ChangeDNS - DNS 서버를 손쉽게 변경합니다. 75,314 08-13
210 [ReactNative] android directory was detected in the project. 65,089 07-20
209 [리눅스] 메일(Mail) 삭제/초기화 57,917 07-18
208 [Delphi] 윈도우 알림센터에 메시지 출력하기 55,095 06-20
207 [그누보드] 사이드바 만들기 104,919 05-04