feat: build for both architectures (x86 and x64) on Windows (#1262)

This commit is contained in:
Igor Gassmann 2018-04-03 10:08:38 -04:00 committed by GitHub
parent 401d980795
commit 51c0a7cc98
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View file

@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
### Added
* 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

View file

@ -65,6 +65,14 @@
"perMachine": true,
"createDesktopShortcut": "always"
},
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64", "ia32"]
}
]
},
"artifactName": "${productName}_${version}.${ext}",
"beforeBuild": "./build/checkDaemonPlatform.js"
}