All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.cli.commands.shared.SourceGeneratorOptions.scala Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package scala.cli.commands.shared

import caseapp.*

import scala.cli.commands.tags

// format: off
final case class SourceGeneratorOptions(
  @Group(HelpGroup.SourceGenerator.toString)
  @Tag(tags.restricted)
  @HelpMessage("Generate BuildInfo for project")
  @Name("buildInfo")
    useBuildInfo: Option[Boolean] = None
)
// format: on

object SourceGeneratorOptions {
  implicit lazy val parser: Parser[SourceGeneratorOptions] = Parser.derive
  implicit lazy val help: Help[SourceGeneratorOptions]     = Help.derive
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy