aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.sbt3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index c152f4b..fb199b5 100644
--- a/build.sbt
+++ b/build.sbt
@@ -52,7 +52,7 @@ lazy val common = crossProject(JVMPlatform, JSPlatform, NativePlatform)
scalaVersion := "2.11.12",
nativeLinkStubs := true,
libraryDependencies ++= Seq(
- "io.crashbox" %%% "commando" % "0.1.1"
+ "io.crashbox" %%% "commando" % "0.1.2"
),
sourceGenerators in Compile += Def.task {
import sys.process._
@@ -98,6 +98,7 @@ lazy val client = project
.settings(
scalaVersion := "2.11.12",
nativeMode := "debug",
+ name := "triad"
)
.dependsOn(commonNative)