From fa3ce2acc83ffe26bc7e4c71f6ba27e836510126 Mon Sep 17 00:00:00 2001 From: Dark98 Date: Fri, 18 Jun 2021 06:44:48 +0100 Subject: [PATCH] Windows VSCode Compile Setup pt1 --- .vscode/settings.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 97d6069..dd8ee9f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -55,5 +55,38 @@ "ratio": "cpp", "regex": "cpp", "shared_mutex": "cpp" + }, + "terminal.integrated.shell.windows": "C:\\msys64\\usr\\bin\\bash.exe", +"terminal.integrated.env.windows": +{ + "MSYSTEM": "MINGW64", + //"MSYS2_PATH_TYPE": "inherit", + "MSVSCODE": "1" +}, + + "terminal.integrated.profiles.windows": { + + "PowerShell": { + "source": "PowerShell", + "icon": "terminal-powershell" + }, + "Test": { + "path": [ + "C:\\sys64\\sys2_shell.exe" + ], + "args": [], + "icon": "terminal-cmd" + }, + "Command Prompt": { + "path": [ + "${env:windir}\\Sysnative\\cmd.exe", + "${env:windir}\\System32\\cmd.exe" + ], + "args": [], + "icon": "terminal-cmd" + }, + "Git Bash": { + "source": "Git Bash" + } } } \ No newline at end of file