forked from Laxcorp-Research/project-raven
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.json5
More file actions
100 lines (100 loc) · 2.58 KB
/
electron-builder.json5
File metadata and controls
100 lines (100 loc) · 2.58 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// @see - https://www.electron.build/configuration/configuration
{
"$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json",
"appId": "com.laxcorpresearch.raven",
"asar": true,
"asarUnpack": [
"**/*.node",
"**/audiocapture"
],
"productName": "Raven",
"directories": {
"output": "release/${version}"
},
"protocols": [
{
"name": "Raven",
"schemes": ["raven"]
}
],
"files": [
"dist",
"dist-electron"
],
"mac": {
"icon": "build/icon.icns",
"target": [
"dmg"
],
"artifactName": "${productName}-Mac-${version}-Installer.${ext}",
"extraResources": [
{
"from": "src/native/swift/AudioCapture/.build/release/audiocapture",
"to": "swift/audiocapture"
},
{
"from": "src/native/aec/build/Release/raven-aec.node",
"to": "raven-aec.node"
},
// GStreamer plugin (webrtcdsp + webrtcechoprobe)
{
"from": "src/native/aec/deps/lib/gstreamer-1.0/libgstwebrtcdsp.dylib",
"to": "gstreamer-1.0/libgstwebrtcdsp.dylib"
},
// GStreamer core plugins needed by our pipeline
{
"from": "build/gstreamer-bundle/plugins/",
"to": "gstreamer-1.0/"
},
// GStreamer shared libraries
{
"from": "build/gstreamer-bundle/lib/",
"to": "gstreamer-lib/"
}
]
},
"win": {
"icon": "build/icon.png",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"artifactName": "${productName}-Windows-${version}-Setup.${ext}",
"extraResources": [
{
"from": "src/native/windows/raven-windows-audio.win32-x64-msvc.node",
"to": "raven-windows-audio.win32-x64-msvc.node"
},
{
"from": "src/native/aec/build/Release/raven-aec.node",
"to": "raven-aec.node"
},
// GStreamer plugins (webrtcdsp + core pipeline plugins)
{
"from": "build/gstreamer-bundle-win/plugins/",
"to": "gstreamer-1.0/"
},
// GStreamer shared libraries (DLLs)
{
"from": "build/gstreamer-bundle-win/lib/",
"to": "gstreamer-lib/"
}
]
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": false
},
"linux": {
"target": [
"AppImage"
],
"artifactName": "${productName}-Linux-${version}.${ext}"
}
}