Compare commits
1 Commits
3ba2eadf3e
...
8effb1ff7d
Author | SHA1 | Date | |
---|---|---|---|
8effb1ff7d |
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,5 +1,2 @@
|
|||||||
# Cargo
|
# Cargo
|
||||||
target/
|
target/
|
||||||
|
|
||||||
# Slop
|
|
||||||
.vscode/
|
|
||||||
|
36
.vscode/launch.json
vendored
Normal file
36
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
// 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",
|
||||||
|
"request": "launch",
|
||||||
|
"name": "Debug executable 'bin2hpp'",
|
||||||
|
"cargo": {
|
||||||
|
"args": ["build", "--bin=bin2hpp", "--package=bin2hpp"],
|
||||||
|
"filter": {
|
||||||
|
"name": "bin2hpp",
|
||||||
|
"kind": "bin"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"args": ["-i", "/home/adam/my_library.dll"],
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "lldb",
|
||||||
|
"request": "launch",
|
||||||
|
"name": "Debug unit tests in executable 'bin2hpp'",
|
||||||
|
"cargo": {
|
||||||
|
"args": ["test", "--no-run", "--bin=bin2hpp", "--package=bin2hpp"],
|
||||||
|
"filter": {
|
||||||
|
"name": "bin2hpp",
|
||||||
|
"kind": "bin"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"args": [],
|
||||||
|
"cwd": "${workspaceFolder}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user