Skip to content

Commit

Permalink
Also enable inliner for Scala 2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
mdedetrich committed Sep 11, 2023
1 parent 196376e commit e034142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def baseSettings: Seq[Setting[_]] = Seq(
def compilerVersionDependentScalacOptions: Seq[Setting[_]] = Seq(
scalacOptions := {
scalaBinaryVersion.value match {
case "2.12" =>
case "2.12" | "2.13" =>
scalacOptions.value ++ List(
"-opt-inline-from:<sources>",
"-opt:l:inline",
Expand Down

0 comments on commit e034142

Please sign in to comment.