Hello,
I'm just getting started with SBT and Scala, and was wondering if there is a way to add a folder of .scala files, located outside of the project folder, to the project's classpath? I read that this can be done with .jars, but can it be done with .scala files?
Thanks
Just a note, you could do:
(unmanagedSourceDirectories in Compile) <+= baseDirectory(_ / "Library")
If you just want to append the new directory to existing source directory setting.
Hope that helps!
--
You received this message because you are subscribed to the Google Groups "simple-build-tool" group.
To view this discussion on the web visit https://groups.google.com/d/msg/simple-build-tool/-/KUJ_tgIQniQJ.
To post to this group, send email to simple-b...@googlegroups.com.
To unsubscribe from this group, send email to simple-build-t...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/simple-build-tool?hl=en.