Add custom vscode settings for windows.
This commit is contained in:
parent
73982aace6
commit
734f2aff85
2
.gitignore
vendored
2
.gitignore
vendored
@ -44,7 +44,7 @@
|
|||||||
|
|
||||||
# Text editor remnants
|
# Text editor remnants
|
||||||
*.swp
|
*.swp
|
||||||
.vscode/*
|
# vscode/*
|
||||||
.idea/*
|
.idea/*
|
||||||
|
|
||||||
# General project-specific ignores
|
# General project-specific ignores
|
||||||
|
29
.vscode/c_cpp_properties.json
vendored
Normal file
29
.vscode/c_cpp_properties.json
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Win32",
|
||||||
|
"includePath": [
|
||||||
|
"${workspaceFolder}/**",
|
||||||
|
"${workspaceFolder}/include",
|
||||||
|
"${workspaceFolder}/include/**",
|
||||||
|
"${workspaceFolder}/include/dxsdk",
|
||||||
|
"${workspaceFolder}/include/GL",
|
||||||
|
"${workspaceFolder}/include/libc",
|
||||||
|
"${workspaceFolder}/include/PR",
|
||||||
|
"${workspaceFolder}/include/stb"
|
||||||
|
],
|
||||||
|
"defines": [
|
||||||
|
"_DEBUG",
|
||||||
|
"UNICODE",
|
||||||
|
"_UNICODE"
|
||||||
|
],
|
||||||
|
"windowsSdkVersion": "10.0.22621.0",
|
||||||
|
"compilerPath": "cl.exe",
|
||||||
|
"cStandard": "c17",
|
||||||
|
"cppStandard": "c++17",
|
||||||
|
"intelliSenseMode": "windows-msvc-x64",
|
||||||
|
"configurationProvider": "ms-vscode.makefile-tools"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"version": 4
|
||||||
|
}
|
42
.vscode/settings.json
vendored
Normal file
42
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
{
|
||||||
|
"files.associations": {
|
||||||
|
"sm64.h": "c",
|
||||||
|
"gfx_dimensions.h": "c",
|
||||||
|
"gbi.h": "c",
|
||||||
|
"options_menu.h": "c",
|
||||||
|
"*.in": "cpp",
|
||||||
|
"chrono": "cpp",
|
||||||
|
"functional": "cpp"
|
||||||
|
},
|
||||||
|
// https://stackoverflow.com/questions/45836650/how-do-i-integrate-msys2-shell-into-visual-studio-code-on-window
|
||||||
|
"terminal.integrated.profiles.windows": {
|
||||||
|
"PowerShell": {
|
||||||
|
"source": "PowerShell",
|
||||||
|
"icon": "terminal-powershell"
|
||||||
|
},
|
||||||
|
"Command Prompt": {
|
||||||
|
"path": [
|
||||||
|
"${env:windir}\\Sysnative\\cmd.exe",
|
||||||
|
"${env:windir}\\System32\\cmd.exe"
|
||||||
|
],
|
||||||
|
"args": [],
|
||||||
|
"icon": "terminal-cmd"
|
||||||
|
},
|
||||||
|
"Git Bash": {
|
||||||
|
"source": "Git Bash"
|
||||||
|
},
|
||||||
|
"MSYS2": {
|
||||||
|
"path": "C:\\msys64\\usr\\bin\\bash.exe",
|
||||||
|
"args": [
|
||||||
|
"--login",
|
||||||
|
"-i"
|
||||||
|
],
|
||||||
|
"env": {
|
||||||
|
"MSYSTEM": "MINGW64",
|
||||||
|
"CHERE_INVOKING": "1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user