[Gradle] Enable the IC backup optimizations by default
^KT-62758 In Progress
This commit is contained in:
committed by
Space Team
parent
f0c643a887
commit
0f245ef3c6
+2
-2
@@ -456,13 +456,13 @@ internal class PropertiesProvider private constructor(private val project: Proje
|
|||||||
get() = booleanProperty("kotlin.daemon.useFallbackStrategy") ?: true
|
get() = booleanProperty("kotlin.daemon.useFallbackStrategy") ?: true
|
||||||
|
|
||||||
val preciseCompilationResultsBackup: Boolean
|
val preciseCompilationResultsBackup: Boolean
|
||||||
get() = booleanProperty(KOTLIN_COMPILER_USE_PRECISE_COMPILATION_RESULTS_BACKUP) ?: false
|
get() = booleanProperty(KOTLIN_COMPILER_USE_PRECISE_COMPILATION_RESULTS_BACKUP) ?: true
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This property should be enabled together with [preciseCompilationResultsBackup]
|
* This property should be enabled together with [preciseCompilationResultsBackup]
|
||||||
*/
|
*/
|
||||||
val keepIncrementalCompilationCachesInMemory: Boolean
|
val keepIncrementalCompilationCachesInMemory: Boolean
|
||||||
get() = booleanProperty(KOTLIN_COMPILER_KEEP_INCREMENTAL_COMPILATION_CACHES_IN_MEMORY) ?: false
|
get() = booleanProperty(KOTLIN_COMPILER_KEEP_INCREMENTAL_COMPILATION_CACHES_IN_MEMORY) ?: true
|
||||||
|
|
||||||
val createDefaultMultiplatformPublications: Boolean
|
val createDefaultMultiplatformPublications: Boolean
|
||||||
get() = booleanProperty(KOTLIN_CREATE_DEFAULT_MULTIPLATFORM_PUBLICATIONS) ?: true
|
get() = booleanProperty(KOTLIN_CREATE_DEFAULT_MULTIPLATFORM_PUBLICATIONS) ?: true
|
||||||
|
|||||||
Reference in New Issue
Block a user