We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db86ff0 commit f3a69ecCopy full SHA for f3a69ec
build.sbt
@@ -22,7 +22,9 @@ lazy val commonSettings = Seq(
22
),
23
Compile / unmanagedSourceDirectories ++= {
24
if (isDotty.value)
25
- List(baseDirectory.value / "scala-3", baseDirectory.value / "../shared/scala-3")
+ List(CrossType.Pure, CrossType.Full).flatMap(
26
+ _.sharedSrcDir(baseDirectory.value, "main").toList.map(f => file(f.getPath + "-3"))
27
+ )
28
else Nil
29
},
30
unmanagedResources in Compile ++= {
0 commit comments