Merge pull request #23 from SteelDynamite/packaging/windows-msi
Packaging/windows msi
This commit is contained in:
commit
1b8febcb45
2
apps/tauri/src-tauri/Cargo.lock
generated
2
apps/tauri/src-tauri/Cargo.lock
generated
|
|
@ -2398,7 +2398,7 @@ dependencies = [
|
|||
]
|
||||
|
||||
[[package]]
|
||||
name = "onyx-tauri"
|
||||
name = "onyx-tasks"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
|
|
|
|||
|
|
@ -1,13 +1,17 @@
|
|||
[package]
|
||||
name = "onyx-tauri"
|
||||
name = "onyx-tasks"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "Tauri v2 desktop GUI for Onyx"
|
||||
license = "GPL-3.0-or-later"
|
||||
repository = "https://github.com/SteelDynamite/onyx"
|
||||
|
||||
[[bin]]
|
||||
name = "onyx-standalone"
|
||||
path = "src/main.rs"
|
||||
|
||||
[lib]
|
||||
name = "onyx_tauri_lib"
|
||||
name = "onyx_tasks_lib"
|
||||
crate-type = ["staticlib", "cdylib", "rlib"]
|
||||
|
||||
[build-dependencies]
|
||||
|
|
|
|||
|
|
@ -2,5 +2,5 @@
|
|||
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
||||
|
||||
fn main() {
|
||||
onyx_tauri_lib::run()
|
||||
onyx_tasks_lib::run()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
},
|
||||
"bundle": {
|
||||
"active": true,
|
||||
"targets": ["appimage", "deb"],
|
||||
"targets": ["appimage", "deb", "msi"],
|
||||
"icon": [
|
||||
"icons/32x32.png",
|
||||
"icons/128x128.png",
|
||||
|
|
|
|||
Loading…
Reference in a new issue