aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt32
1 files changed, 0 insertions, 32 deletions
diff --git a/build.sbt b/build.sbt
deleted file mode 100644
index 152be51..0000000
--- a/build.sbt
+++ /dev/null
@@ -1,32 +0,0 @@
-// shadow sbt-scalajs' crossProject and CrossType until Scala.js 1.0.0 is released
-import sbtcrossproject.{crossProject, CrossType}
-
-lazy val commando = crossProject(JSPlatform, JVMPlatform, NativePlatform)
- .withoutSuffixFor(JVMPlatform)
- .crossType(CrossType.Pure)
- .in(file("."))
- .settings(
- scalacOptions ++= Seq(
- "-deprecation",
- "-feature"
- ),
- libraryDependencies ++= Seq(
- "com.lihaoyi" %%% "utest" % "0.6.6" % "test"
- ),
- testFrameworks += new TestFramework("utest.runner.Framework"),
- scalaVersion := crossScalaVersions.value.head
- )
- .jsSettings(
- crossScalaVersions := "2.12.8" :: "2.11.12" :: Nil
- )
- .jvmSettings(
- crossScalaVersions := "2.12.8" :: "2.11.12" :: Nil
- )
- .nativeSettings(
- crossScalaVersions := "2.11.12" :: Nil,
- nativeLinkStubs := true
- )
-
-lazy val commandoJS = commando.js
-lazy val commandoJVM = commando.jvm
-lazy val commandoNative = commando.native