aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-10-06 11:40:30 +0200
committerGitHub <noreply@github.com>2016-10-06 11:40:30 +0200
commita3064622e7ce4d73ddd91de0fc6bebfe0ec23ae9 (patch)
tree9085c715a63a324088c28ddc25828315d7cb1358 /project
parent93d4c8c945540d5df7ee9e8541abcf112439bb1e (diff)
parent46b325373c8ec516be2b6b1c6024ae1c783fbc8f (diff)
downloaddotty-a3064622e7ce4d73ddd91de0fc6bebfe0ec23ae9.tar.gz
dotty-a3064622e7ce4d73ddd91de0fc6bebfe0ec23ae9.tar.bz2
dotty-a3064622e7ce4d73ddd91de0fc6bebfe0ec23ae9.zip
Merge pull request #1494 from martijnhoekstra/wintests
[WIP] fix encoding issues
Diffstat (limited to 'project')
-rw-r--r--project/Build.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/project/Build.scala b/project/Build.scala
index ec2db8339..7c57bd862 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -40,7 +40,7 @@ object DottyBuild extends Build {
homepage in Global := Some(url("https://github.com/lampepfl/dotty")),
// scalac options
- scalacOptions in Global ++= Seq("-feature", "-deprecation", "-language:existentials,higherKinds,implicitConversions"),
+ scalacOptions in Global ++= Seq("-feature", "-deprecation", "-encoding", "UTF8", "-language:existentials,higherKinds,implicitConversions"),
javacOptions in Global ++= Seq("-Xlint:unchecked", "-Xlint:deprecation")
)