Skip to content

Commit

Permalink
feat: explicitly specifying build targets
Browse files Browse the repository at this point in the history
  • Loading branch information
akopachov committed Aug 9, 2024
1 parent 8691c07 commit 4c9b9eb
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions build.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,38 @@
"oneClick": false,
"deleteAppDataOnUninstall": true,
"allowToChangeInstallationDirectory": true
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"arm64"
]
}
]
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
]
},
"linux": {
"target": [
{
"target": "appimage",
"arch": [
"x64",
"arm64"
]
}
]
}
}

0 comments on commit 4c9b9eb

Please sign in to comment.