2

我正在尝试将选项从游戏中传递给 scala 编译器。

我有:[warn] there were 1 feature warnings; re-run with -feature for details [warn] one warning found

所以我尝试使用compile -feature但得到:

$ compile -feature
[error] Expected end of input.
[error] compile -feature
[error]

在控制台中将选项传递给编译器的正确方法是什么?

4

2 回答 2

4

project/Build.scala您可以在文件中添加 scalac 选项。

打开此文件并将您自己的项目设置添加到文件底部的 Play 项目对象中。例如:

val main = play.Project(appName, appVersion, appDependencies).settings(
    // Add your own project settings here   
    scalacOptions += "-feature" 
)
于 2013-07-14T17:01:25.010 回答
3
$ set scalacOptions += "-feature"
$ compile
于 2013-07-14T22:22:52.677 回答