Skip to content

Commit

Permalink
Fix build.sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
danicheg committed Jan 1, 2024
1 parent a484a51 commit de3ded2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ lazy val profiledb = project
scalaVersion := bin212.head,
libraryDependencies +=
"com.thesamet.scalapb" %% "scalapb-runtime" % scalapbVersion % "protobuf",
Compile / PB.targets := Seq(scalapb.gen() -> (Compile / sourceManaged).value),
Compile / managedSourceDirectories += target.value / "protobuf-generated",
Compile / PB.targets in Compile := Seq(
scalapb.gen() -> (target.value / "protobuf-generated")
),
buildInfoPackage := "scalac.profiling.internal.build",
buildInfoKeys := List[BuildInfoKey](
Keys.organization,
Expand Down

0 comments on commit de3ded2

Please sign in to comment.