-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add sbt plugin (#60) #111
Add sbt plugin (#60) #111
Conversation
The sbt plugin is currently very basic. |
sourceGenerators += Def.task { Seq(nativeBindgen.value) }, | ||
name in nativeBindgen := "ScalaNativeBindgen", | ||
nativeBindgen := { | ||
val output = sourceManaged.value / "sbt-scala-native-bindgen" / "nativeBindgen.scala" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This assumes that the user does not want to commit the generated output. We should probably add a nativeBindgenOutput
settings to make it configurable.
val nativeBindgenLink = | ||
settingKey[Option[String]]("Name of library to be linked") | ||
val nativeBindgenExclude = settingKey[Option[String]]("Exclude prefix") | ||
val nativeBindgen = taskKey[File]("Generate GraphQL API code") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jonas, I suppose you forgot to change the description for nativeBindgen
, I'll change it to "Generate Scala Native bindings"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch 👍 thanks
} | ||
} | ||
) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What was the problem with Scala/sbt versions? How does this project
function solve it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The problem was that Scala Native requires scalaVersion
2.11 and sbt either 2.10 or 2.12. Except for the samples project which tests the generated bindings, all other sbt projects use the scalaVersion
associated with sbt.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Refs: #60