summaryrefslogtreecommitdiff
path: root/build.sbt
blob: 533a22b04265e61ceb1d5d65248aa57e0280a24b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)

initialCommands in console := """
import ixee.cryptopals.utils._
import ByteUtils._
import ConversionUtils._
import ixee.cryptopals.solvers._
"""