public void setDecompile(boolean decompile) {
this.decompile = decompile;
}
public void setWyalDir(File wyalDir) throws IOException {
this.wyalDir = new DirectoryRoot(wyalDir, wyalFileFilter, registry);
if (wycsDir instanceof VirtualRoot) {
// The point here is to ensure that when this build task is used in
// a standalone fashion, that wycs files are actually written to
// disk.
this.wycsDir = new DirectoryRoot(wyalDir, wycsFileFilter, registry);
}
}