From c20b1bbc9197be4fd8cb1064790c597f2923c805 Mon Sep 17 00:00:00 2001 From: Dolu1990 Date: Wed, 1 Jun 2016 13:42:07 +0200 Subject: [PATCH] Add withSource to SBT scripts --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index a67d812..f1dd2ca 100644 --- a/build.sbt +++ b/build.sbt @@ -6,6 +6,6 @@ scalaVersion := "2.11.6" libraryDependencies ++= Seq( - "com.github.spinalhdl" % "spinalhdl-core_2.11" % "latest.release", - "com.github.spinalhdl" % "spinalhdl-lib_2.11" % "latest.release" + "com.github.spinalhdl" % "spinalhdl-core_2.11" % "latest.release" withSources(), + "com.github.spinalhdl" % "spinalhdl-lib_2.11" % "latest.release" withSources() ) \ No newline at end of file