mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-03-19 13:35:17 +01:00
Add windows build config
This commit is contained in:
parent
1034d4d5d2
commit
32769a6357
1 changed files with 11 additions and 1 deletions
12
build.sbt
12
build.sbt
|
@ -423,7 +423,17 @@ lazy val bundle = project
|
||||||
.in(file("app/bundle"))
|
.in(file("app/bundle"))
|
||||||
.settings(CommonSettings.prodSettings: _*)
|
.settings(CommonSettings.prodSettings: _*)
|
||||||
.dependsOn(appServer, gui)
|
.dependsOn(appServer, gui)
|
||||||
.enablePlugins(JavaAppPackaging)
|
.settings(
|
||||||
|
Compile / doc := (target.value / "none"),
|
||||||
|
// general package information (can be scoped to Windows)
|
||||||
|
maintainer := "Chris Stewart <stewart.chris1234@gmail.com>",
|
||||||
|
packageSummary := "A discreet log contract oracle",
|
||||||
|
packageDescription := "A discreet log contract oracle",
|
||||||
|
// wix build information
|
||||||
|
wixProductId := "ce07be71-510d-414a-92d4-dff47631848a",
|
||||||
|
wixProductUpgradeId := "4552fb0e-e257-4dbd-9ecb-dba9dbacf424"
|
||||||
|
)
|
||||||
|
.enablePlugins(JavaAppPackaging, WindowsPlugin)
|
||||||
|
|
||||||
lazy val gui = project
|
lazy val gui = project
|
||||||
.in(file("app/gui"))
|
.in(file("app/gui"))
|
||||||
|
|
Loading…
Add table
Reference in a new issue