clone https://github.com/milessabin/shapeless.git
cd shapeless
sbt
-- in sbt:
++2.11.11
coreNative/publishM2
exit
clone https://github.com/Rudogma/scala-superquants.git
cd scala-superquants
edit project/Build.sbt
find and change version from "0.9" -> "0.9-SNAPSHOT"
sbt
-- in sbt:
++2.11.11
superquantsNative/publishM2
exit
mkdir scalanative-superquants
cd scalanative-superquants
sbt new scala-native/scala-native.g8
edit build.sbt:
scalaVersion := "2.11.11"
enablePlugins(ScalaNativePlugin)
resolvers ++= Seq(
Resolver.sonatypeRepo("releases"),
Resolver.sonatypeRepo("snapshots")
)
libraryDependencies ++= Seq(
"com.chuusai" %%% "shapeless" % "2.3.3-SNAPSHOT",
"org.rudogma" %%% "supertagged" % "1.2",
"org.rudogma" %%% "superquants" % "0.9-SNAPSHOT"
)
nativeMode := "release"
nativeGC := "none"
sbt
-- in sbt:
run