summaryrefslogtreecommitdiff
path: root/build.sbt
blob: 394330d31a70b4f84f1d9d383362db2303b7962c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
name := "CRYPTOPALS !n_n!"

scalaVersion := "2.11.4"

scalaSource in Compile := baseDirectory.value / "src"

scalaSource in Test := baseDirectory.value / "test"

lazy val testUtils = RootProject(file("/toy/scala/test_utils"))

lazy val root = Project("root", file("."))
  .dependsOn(testUtils)