Skip to content

Commit

Permalink
first functioning ui app
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeClimberNT committed Sep 26, 2024
1 parent 9652b58 commit 97e3540
Show file tree
Hide file tree
Showing 6 changed files with 3,740 additions and 548 deletions.
61 changes: 61 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
// 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 'multi-platform-screen-casting'",
"cargo": {
"args": [
"build",
"--bin=multi-platform-screen-casting",
"--package=multi-platform-screen-casting"
],
"filter": {
"name": "multi-platform-screen-casting",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'multi-platform-screen-casting'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=multi-platform-screen-casting",
"--package=multi-platform-screen-casting"
],
"filter": {
"name": "multi-platform-screen-casting",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Run executable 'multi-platform-screen-casting'",
"cargo": {
"args": [
"run"
],
"filter": {
"name": "multi-platform-screen-casting",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
Loading

0 comments on commit 97e3540

Please sign in to comment.