Created
November 13, 2017 12:04
-
-
Save devlights/c8836070e6c0ebace8469a84a898a924 to your computer and use it in GitHub Desktop.
[VSCODE] Windows で MinGW 使ってビルドできるようにする設定(まだ実行までは出来ていないけど)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "configurations": [ | |
| { | |
| "name": "Win32", | |
| "includePath": [ | |
| "${workspaceRoot}", | |
| "C:/MinGW/include", | |
| "C:/MinGW/lib/gcc/mingw32/4.9.3/include" | |
| ], | |
| "defines": [ | |
| "_DEBUG", | |
| "UNICODE" | |
| ], | |
| "intelliSenseMode": "clang-x64", | |
| "browse": { | |
| "path": [ | |
| "${workspaceRoot}", | |
| "C:/MinGW/include", | |
| "C:/MinGW/lib/gcc/mingw32/4.9.3/include" | |
| ], | |
| "limitSymbolsToIncludedHeaders": true, | |
| "databaseFilename": "" | |
| } | |
| } | |
| ], | |
| "version": 3 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| int main(void) { | |
| printf("helloworld\n"); | |
| return 0; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // IntelliSense を使用して利用可能な属性を学べます。 | |
| // 既存の属性の説明をホバーして表示します。 | |
| // 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "(Windows) Launch", | |
| "type": "cppdbg", | |
| "request": "launch", | |
| "program": "${workspaceFolder}/${fileBasenameNoExtension}.exe", | |
| "args": [], | |
| "stopAtEntry": false, | |
| "cwd": "${workspaceFolder}", | |
| "environment": [], | |
| "externalConsole": true, | |
| "preLaunchTask": "build" | |
| } | |
| ] | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
vscode version は 1.18.0