How to specify scalacOptions individually for files

Viewed 232

I'd like to specify for a file compiler options that differs from entire projects. To be more concrete, there is some debugging that I need to enable to figure out why macros fails in that particular file. If I change the options globally, then the entire project would be recompiled (and produce debug), which I want to avoid.

How am I supposed to do that with sbt?

2 Answers
Related