-
Notifications
You must be signed in to change notification settings - Fork 771
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
126 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,4 +34,3 @@ Session.vim | |
tags | ||
# Persistent undo | ||
[._]*.un~ | ||
.vscode/ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "(gdb) Launch", | ||
"type": "cppdbg", | ||
"request": "launch", | ||
"stopAtEntry": false, | ||
"launchCompleteCommand": "exec-run", | ||
"preLaunchTask": "${defaultBuildTask}", | ||
"MIMode": "gdb", | ||
"program": "${workspaceFolder}/build/debug/monero-wallet-gui", | ||
"linux": { | ||
"miDebuggerPath": "/usr/bin/gdb" | ||
}, | ||
"osx": { | ||
"MIMode": "lldb" | ||
}, | ||
"windows": { | ||
"miDebuggerPath": "C:\\msys64\\mingw64\\bin\\gdb.exe", | ||
"program": "${workspaceFolder}/build/release/bin/monero-wallet-gui.exe", | ||
"cwd": "${fileDirname}", | ||
"args": [], | ||
"environment": [], | ||
"targetArchitecture": "x64", | ||
"externalConsole": true, | ||
}, | ||
"setupCommands": [{ | ||
"description": "Enable pretty-printing for gdb", | ||
"text": "-enable-pretty-printing", | ||
"ignoreFailures": false | ||
}], | ||
} | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"terminal.integrated.defaultProfile.windows": "MSYS2" | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
{ | ||
"tasks": [ | ||
{ | ||
"type": "shell", | ||
"label": "Monero GUI Debug", | ||
"detail": "Build monero-wallet-gui for development purposes", | ||
"command": "make", | ||
"args": [ | ||
"debug", | ||
"-j", | ||
{ | ||
"value": "$((`nproc` > 1 ? $((`nproc` - 1)) : 1 ))", | ||
"quoting": "weak" | ||
} | ||
], | ||
"osx": { | ||
"args": [ | ||
"debug-static-mac64", | ||
"-j", | ||
{ | ||
"value": "$((`nproc` > 1 ? $((`nproc` - 1)) : 1 ))", | ||
"quoting": "weak" | ||
} | ||
] | ||
}, | ||
"windows": { | ||
"args": [ | ||
"release-win64", | ||
"-j", | ||
{ | ||
"value": "$((`nproc` > 1 ? $((`nproc` - 1)) : 1 ))", | ||
"quoting": "weak" | ||
} | ||
], | ||
"options": { | ||
"env": { | ||
"MSYSTEM": "MINGW64", | ||
"CHERE_INVOKING": "1" | ||
}, | ||
"shell": { | ||
"executable": "C:\\msys64\\usr\\bin\\bash.exe", | ||
"args": [ | ||
"--login", | ||
"-i", | ||
"-x", | ||
"-c" | ||
] | ||
} | ||
} | ||
}, | ||
"runOptions": { | ||
"instanceLimit": 1 | ||
}, | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "always", | ||
"focus": false, | ||
"panel": "shared", | ||
"showReuseMessage": true, | ||
"clear": true | ||
}, | ||
"options": { | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
"problemMatcher": [ | ||
"$gcc" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
}, | ||
{ | ||
"type": "shell", | ||
"command": "make", | ||
"args": [ | ||
"clean" | ||
], | ||
"label": "Monero GUI Clean", | ||
"detail": "Cleanup builds", | ||
"problemMatcher": [], | ||
} | ||
], | ||
"version": "2.0.0", | ||
} |