From 32769a63578b284a69d7397b1de22bcb592b421c Mon Sep 17 00:00:00 2001 From: Chris Stewart Date: Sat, 29 May 2021 09:33:29 -0500 Subject: [PATCH] Add windows build config --- build.sbt | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index ae71deb9c7..fc4d3bc299 100644 --- a/build.sbt +++ b/build.sbt @@ -423,7 +423,17 @@ lazy val bundle = project .in(file("app/bundle")) .settings(CommonSettings.prodSettings: _*) .dependsOn(appServer, gui) - .enablePlugins(JavaAppPackaging) + .settings( + Compile / doc := (target.value / "none"), + // general package information (can be scoped to Windows) + maintainer := "Chris Stewart ", + 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 .in(file("app/gui"))