parallel compilation 'false' by default in order to reduce memory requirements for the large projects

This commit is contained in:
Eugene Zhuravlev
2012-11-19 17:21:14 +01:00
parent f5ff8a84c5
commit cb855399f5
@@ -39,7 +39,7 @@ public class CompilerWorkspaceConfiguration implements PersistentStateComponent<
public boolean CLEAR_OUTPUT_DIRECTORY = true;
public boolean USE_COMPILE_SERVER = true;
public boolean MAKE_PROJECT_ON_SAVE = false;
public boolean PARALLEL_COMPILATION = true;
public boolean PARALLEL_COMPILATION = false;
public int COMPILER_PROCESS_HEAP_SIZE = DEFAULT_COMPILE_PROCESS_HEAP_SIZE;
public String COMPILER_PROCESS_ADDITIONAL_VM_OPTIONS = DEFAULT_COMPILE_PROCESS_VM_OPTIONS;