mirror of
https://github.com/house-of-vanity/furumi.git
synced 2025-07-07 05:34:07 +00:00
init
This commit is contained in:
46
.vscode/launch.json
vendored
Normal file
46
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,46 @@
|
||||
{
|
||||
// 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": [
|
||||
{
|
||||
"type": "lldb",
|
||||
"env": {
|
||||
"RUST_BACKTRACE": "1",
|
||||
},
|
||||
"request": "launch",
|
||||
"name": "Debug executable 'furumi'",
|
||||
"cargo": {
|
||||
"args": [
|
||||
"run",
|
||||
"--",
|
||||
"--conf",
|
||||
"/etc/mus-fuse.yml"
|
||||
],
|
||||
},
|
||||
"cwd": "${workspaceFolder}",
|
||||
"postDebugTask": "Umount FUSE",
|
||||
"preLaunchTask": "Umount FUSE",
|
||||
}
|
||||
{
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"name": "Debug unit tests in executable 'furumi'",
|
||||
"cargo": {
|
||||
"args": [
|
||||
"test",
|
||||
"--no-run",
|
||||
"--bin=furumi",
|
||||
"--package=furumi"
|
||||
],
|
||||
"filter": {
|
||||
"name": "furumi",
|
||||
"kind": "bin"
|
||||
}
|
||||
},
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}"
|
||||
}
|
||||
],
|
||||
}
|
5
.vscode/settings.json
vendored
Normal file
5
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"lldb.displayFormat": "auto",
|
||||
"lldb.showDisassembly": "never",
|
||||
"lldb.dereferencePointers": true
|
||||
}
|
14
.vscode/tasks.json
vendored
Normal file
14
.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
// for the documentation about the tasks.json format
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Umount FUSE",
|
||||
"type": "shell",
|
||||
"command": "fusermount -u mnt",
|
||||
"group": "build",
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user