Added code to create an executable/app, added some info in the readme.

This commit is contained in:
2025-12-04 17:15:14 +01:00
parent 1ca1c2c7b4
commit 2252771ac3
6 changed files with 73 additions and 1 deletions

20
.vscode/tasks.json vendored
View File

@@ -63,6 +63,26 @@
// "isDefault": true
}
},
{
"label": "cargo bundle - create app release",
"type": "shell",
"command": "~/.cargo/bin/cargo", // note: full path to the cargo
"args": [
"bundle",
"--bin",
"main_gui",
"--release",
// "--target",
// "aarch64-apple-darwin",
// "x86_64-pc-windows-gnu"
// "--",
// "arg1"
],
"group": {
"kind": "build",
// "isDefault": true
}
},
{
"label": "Terminate All Tasks",
"command": "echo ${input:terminate}",