Skip to content

Commit

Permalink
Cross-build for Native
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge committed Sep 9, 2022
1 parent 7588d4d commit 7a83589
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ lazy val docs = project

lazy val root = tlCrossRootProject.aggregate(core)

lazy val core = crossProject(JSPlatform, JVMPlatform)
lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.crossType(CrossType.Pure)
.in(file("core"))
.settings(
name := "munit-cats-effect",
libraryDependencies ++= Seq(
"org.scalameta" %%% "munit" % "1.0.0-M6",
"org.typelevel" %%% "cats-effect" % "3.3.14"
"org.typelevel" %%% "cats-effect" % "3.3.14-1-5d11fe9"
)
)
2 changes: 2 additions & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1")
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.13")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.4.13")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.7")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.2.0")

0 comments on commit 7a83589

Please sign in to comment.