Skip to content

Commit

Permalink
Merge pull request #350 from bitsnap/cats-native
Browse files Browse the repository at this point in the history
Native Platform for scribe-cats, fixes #349
  • Loading branch information
darkfrog26 authored Oct 16, 2022
2 parents c10f844 + fc96e9b commit 283d69a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ val sourceMapSettings = List(
lazy val root = project.in(file("."))
.aggregate(
coreJS, coreJVM, coreNative,
catsJS, catsJVM,
catsJS, catsJVM, catsNative,
fileJVM, fileNative,
jsonJS, jsonJVM,
slf4j, slf4j2, log4j, migration, config, slack, logstash
Expand Down Expand Up @@ -140,7 +140,7 @@ lazy val coreJS = core.js
lazy val coreJVM = core.jvm
lazy val coreNative = core.native

lazy val cats = crossProject(JVMPlatform, JSPlatform)
lazy val cats = crossProject(JVMPlatform, JSPlatform, NativePlatform)
.crossType(CrossType.Full)
.settings(
name := "scribe-cats",
Expand Down Expand Up @@ -168,6 +168,7 @@ lazy val cats = crossProject(JVMPlatform, JSPlatform)

lazy val catsJS = cats.js
lazy val catsJVM = cats.jvm
lazy val catsNative = cats.native

lazy val fileModule = crossProject(JVMPlatform, NativePlatform)
.crossType(CrossType.Full)
Expand Down

0 comments on commit 283d69a

Please sign in to comment.