SBT for windows中unmanagedSources参数的语法是什么?

时间:2011-09-21 01:29:36

标签: scala sbt

首先,我的非托管源不在标准结构中。它是:

src/com/domain/...

而不是

src/main/java/com/domain/...

这会导致任何问题吗?

其次,我尝试了一些选项,包括

unmanagedSources in Compile += file("c:/codebase/src")
unmanagedSources in Compile += file("/codebase/src")
unmanagedSources in Compile += file("c:\\codebase\\src")

对于以上所有,我得到'找不到'错误

1 个答案:

答案 0 :(得分:2)

只要您正确配置它,它不应该导致问题。您可以在项目设置中尝试以下内容:


unmanagedSourceDirectories in Compile <+= baseDirectory{ _ / "src"}

baseDirectory,顾名思义,是项目的基本目录,请参阅the Keys class