Skip to content
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

Merged
merged 2 commits into from
Jul 10, 2018
Merged

Add sbt plugin (#60) #111

merged 2 commits into from
Jul 10, 2018

Conversation

jonas
Copy link
Member

@jonas jonas commented Jul 6, 2018

Refs: #60

@jonas jonas requested a review from kornilova203 July 6, 2018 12:24
@jonas
Copy link
Member Author

jonas commented Jul 6, 2018

The sbt plugin is currently very basic.
Eventually it would be nice to make it automatically download the bindgen executable but for now it must be explicitly configured.

sourceGenerators += Def.task { Seq(nativeBindgen.value) },
name in nativeBindgen := "ScalaNativeBindgen",
nativeBindgen := {
val output = sourceManaged.value / "sbt-scala-native-bindgen" / "nativeBindgen.scala"
Copy link
Member Author

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")
Copy link
Member

@kornilova203 kornilova203 Jul 10, 2018

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"

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch 👍 thanks

}
}
)
}
Copy link
Member

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?

Copy link
Member Author

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.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@kornilova203 kornilova203 merged commit 67ef777 into master Jul 10, 2018
@jonas jonas deleted the sbt-plugin branch July 10, 2018 22:09
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants