mirror of https://github.com/sbt/sbt.git
12 lines
413 B
Java
12 lines
413 B
Java
|
|
package xsbti.compile;
|
||
|
|
|
||
|
|
import java.io.File;
|
||
|
|
|
||
|
|
public interface SingleOutput extends Output {
|
||
|
|
|
||
|
|
/** The directory where class files should be generated.
|
||
|
|
* Incremental compilation will manage the class files in this directory.
|
||
|
|
* In particular, outdated class files will be deleted before compilation.
|
||
|
|
* It is important that this directory is exclusively used for one set of sources. */
|
||
|
|
File outputDirectory();
|
||
|
|
}
|