diff --git a/build.sbt b/build.sbt index 9dee2e9..5f6495d 100644 --- a/build.sbt +++ b/build.sbt @@ -61,7 +61,7 @@ lazy val root = tlCrossRootProject ThisBuild / Test / parallelExecution := false, ) -lazy val core = crossProject(JVMPlatform, JSPlatform) +lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform) .crossType(CrossType.Pure) .withoutSuffixFor(JVMPlatform) .in(file("modules/core")) diff --git a/project/plugins.sbt b/project/plugins.sbt index 36ddf04..2ceac82 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,4 @@ -addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.6") -addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.6.1") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.14.0") +addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.6") +addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.6.1") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.14.0") +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.16")