-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackager.toml
More file actions
31 lines (28 loc) · 771 Bytes
/
packager.toml
File metadata and controls
31 lines (28 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name = "blue-onyx"
version = "0.8.0"
product-name = "Blue Onyx"
identifier = "com.blue-onyx.app"
description = "Blue Onyx object detection service and utilities"
authors = ["Blue Onyx Team"]
homepage = "https://github.com/blue-onyx/blue-onyx"
out-dir = "target/release"
# All binaries
binaries = [
{ path = "blue_onyx.exe", main = true },
{ path = "blue_onyx_service.exe" },
{ path = "blue_onyx_benchmark.exe" },
{ path = "test_blue_onyx.exe" }
]
# Include essential resources
resources = [
"scripts/",
"target/release/DirectML.dll",
"target/release/onnxruntime.dll",
"README.md",
"LICENSE"
]
# NSIS configuration for administrator privileges
[nsis]
installer-mode = "perMachine"
display-language-selector = false
template = "installer_template.nsi"