This was missing, and shows up in not begin able to set up custom native dependencies as such:
.jvmPlatform(Seq(Versions.Scala))
.jsPlatform(Seq(Versions.Scala))
.nativePlatform(
Seq(Versions.Scala),
Seq.empty,
_.dependsOn(app.native(Versions.Scala)) // this has no effect
)
workaround until this is released
just add a dummy value and set dependencies manually.
lazy val set = tests.native(Versions.Scala).dependsOn(app.native(Versions.Scala))
This was missing, and shows up in not begin able to set up custom native dependencies as such:
workaround until this is released
just add a dummy value and set dependencies manually.