有没有办法为fsc Ant任务指定-feature?

时间:2013-06-09 12:04:48

标签: scala fsc

我一直在通过fsc Ant任务编译我的scala代码并继续收到以下警告:

warning: there were 3 feature warning(s); re-run with -feature for details
two warnings found

我知道将-feature传递给scalac会打印一份关于我所收到的警告的详细报告,而且往往是关于如何修复这些警告的好建议。

但是,我不能为我的生活弄清楚如何将这个论点传递给fsc任务。是否尚未支持?我错过了一些明显会让我后悔问这个问题的事吗?

1 个答案:

答案 0 :(得分:0)

请在下面尝试,根据scala doc,fsc ant任务应与scalac共享相同的属性

<scalac srcdir="${scala.src.dir}"
    destdir="${build.dir}"
    classpathref="build.classpath"
    addparams="-feature">
    <include name="**/*.scala"   />
</scalac>