Add windows build config

This commit is contained in:
Chris Stewart 2021-05-29 09:33:29 -05:00
parent 1034d4d5d2
commit 32769a6357

View file

@ -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"))