在SBT提示符下,我可以将一个外部目录(包含linux动态库)添加到当前的编译和放大器中。使用命令测试类路径 -
> set fullClasspath in Compile += Attributed.blank(file("/inotify_deps"))
> set fullClasspath in Test += Attributed.blank(file("/inotify_deps"))
如何在Build.scala中指定此路径?我试过了 -
unmanagedBase <<= baseDirectory { base => base / "/inotify_deps" },
但这不起作用。如何在Build.scala中修改Compile / Test的fullClasspath变量?