Created
September 29, 2022 15:15
-
-
Save MaxClerkwell/c5cf6efbf8df93a99218161b4abcc26a to your computer and use it in GitHub Desktop.
Simple Build-Config for 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
{ | |
"tasks": [ | |
{ | |
"type": "cppbuild", | |
"label": "C/C++: g++.exe build active file", | |
"command": "C:\\mingw64\\bin\\g++.exe", | |
"args": [ | |
"-fdiagnostics-color=always", | |
"-g", | |
"${file}", | |
"-o", | |
"${fileDirname}\\${fileBasenameNoExtension}.exe" | |
], | |
"options": { | |
"cwd": "${fileDirname}" | |
}, | |
"problemMatcher": ["$gcc"], | |
"group": { | |
"kind": "build", | |
"isDefault": true | |
}, | |
"detail": "Task generated by Debugger." | |
} | |
], | |
"version": "2.0.0" | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment