Skip to content

Commit

Permalink
32-bit windows builds (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Aug 29, 2021
1 parent 83c0eb6 commit 27209ee
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,18 @@
"appId": "org.turbowarp.desktop",
"productName": "TurboWarp",
"win": {
"artifactName": "${productName} Setup ${version}.${ext}",
"artifactName": "${productName} Setup ${version} ${arch}.${ext}",
"icon": "build/icon.ico",
"target": "nsis"
"target": [
{
"target": "nsis",
"arch": "x64"
},
{
"target": "nsis",
"arch": "ia32"
}
]
},
"nsis": {
"oneClick": false,
Expand Down

0 comments on commit 27209ee

Please sign in to comment.