Packages

object Config

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Config
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class Artifact(name: String, classifier: Option[String], checksum: Option[Checksum], path: Path) extends Product with Serializable
  2. case class Checksum(type: String, digest: String) extends Product with Serializable
  3. sealed abstract class CompileOrder extends AnyRef
  4. case class CompileSetup(order: CompileOrder, addLibraryToBootClasspath: Boolean, addCompilerToClasspath: Boolean, addExtraJarsToClasspath: Boolean, manageBootClasspath: Boolean, filterLibraryFromClasspath: Boolean) extends Product with Serializable
  5. case class File(version: String, project: Project) extends Product with Serializable
  6. case class Java(options: List[String]) extends Product with Serializable
  7. case class JsConfig(version: String, mode: LinkerMode, kind: ModuleKindJS, emitSourceMaps: Boolean, jsdom: Option[Boolean], output: Option[Path], nodePath: Option[Path], toolchain: List[Path]) extends PlatformConfig with Product with Serializable
  8. case class JvmConfig(home: Option[Path], options: List[String]) extends PlatformConfig with Product with Serializable
  9. sealed abstract class LinkerMode extends AnyRef
  10. case class Module(organization: String, name: String, version: String, configurations: Option[String], artifacts: List[Artifact]) extends Product with Serializable
  11. sealed abstract class ModuleKindJS extends AnyRef
  12. case class NativeConfig(version: String, mode: LinkerMode, gc: String, targetTriple: String, nativelib: Path, clang: Path, clangpp: Path, toolchain: List[Path], options: NativeOptions, linkStubs: Boolean, output: Option[Path]) extends PlatformConfig with Product with Serializable

    Represents the native platform and all the options it takes.

    Represents the native platform and all the options it takes.

    For the description of these fields, see: https://static.javadoc.io/org.scala-native/tools_2.12/0.3.9/scala/scalanative/build/Config.html

    The only field that has been replaced for user-friendliness is targetTriple by platform.

  13. case class NativeOptions(linker: List[String], compiler: List[String]) extends Product with Serializable
  14. sealed abstract class Platform extends AnyRef
  15. sealed trait PlatformConfig extends AnyRef
  16. case class Project(name: String, directory: Path, workspaceDir: Option[Path], sources: List[Path], dependencies: List[String], classpath: List[Path], out: Path, classesDir: Path, resources: Option[List[Path]], scala: Option[Scala], java: Option[Java], sbt: Option[Sbt], test: Option[Test], platform: Option[Platform], resolution: Option[Resolution]) extends Product with Serializable
  17. case class Resolution(modules: List[Module]) extends Product with Serializable
  18. case class Sbt(sbtVersion: String, autoImports: List[String]) extends Product with Serializable
  19. case class Scala(organization: String, name: String, version: String, options: List[String], jars: List[Path], analysis: Option[Path], setup: Option[CompileSetup]) extends Product with Serializable
  20. case class Test(frameworks: List[TestFramework], options: TestOptions) extends Product with Serializable
  21. case class TestArgument(args: List[String], framework: Option[TestFramework]) extends Product with Serializable
  22. case class TestFramework(names: List[String]) extends Product with Serializable
  23. case class TestOptions(excludes: List[String], arguments: List[TestArgument]) extends Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  20. object CompileOrder
  21. object CompileSetup extends Serializable
  22. object File extends Serializable
  23. object JavaThenScala extends CompileOrder with Product with Serializable
  24. object JsConfig extends Serializable
  25. object JvmConfig extends Serializable
  26. object LinkerMode
  27. object Mixed extends CompileOrder with Product with Serializable
  28. object Module extends Serializable
  29. object ModuleKindJS
  30. object NativeConfig extends Serializable
  31. object NativeOptions extends Serializable
  32. object Platform
  33. object Project extends Serializable
  34. object ScalaThenJava extends CompileOrder with Product with Serializable
  35. object Test extends Serializable
  36. object TestFramework extends Serializable
  37. object TestOptions extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped