feat: build for both architectures (x86 and x64) on Windows (#1262)
This commit is contained in:
parent
401d980795
commit
51c0a7cc98
2 changed files with 9 additions and 0 deletions
|
@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
* Add keyboard shortcut to quit the app on Windows ([#1202](https://github.com/lbryio/lbry-app/pull/1202))
|
* Add keyboard shortcut to quit the app on Windows ([#1202](https://github.com/lbryio/lbry-app/pull/1202))
|
||||||
|
* Build for both architectures (x86 and x64) for Windows ([#1262](https://github.com/lbryio/lbry-app/pull/1262))
|
||||||
|
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -65,6 +65,14 @@
|
||||||
"perMachine": true,
|
"perMachine": true,
|
||||||
"createDesktopShortcut": "always"
|
"createDesktopShortcut": "always"
|
||||||
},
|
},
|
||||||
|
"win": {
|
||||||
|
"target": [
|
||||||
|
{
|
||||||
|
"target": "nsis",
|
||||||
|
"arch": ["x64", "ia32"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"artifactName": "${productName}_${version}.${ext}",
|
"artifactName": "${productName}_${version}.${ext}",
|
||||||
"beforeBuild": "./build/checkDaemonPlatform.js"
|
"beforeBuild": "./build/checkDaemonPlatform.js"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue