Move Gradle property 'kotlin.commonizer.jvmArgs' to 'kotlin.mpp.commonizerJvmArgs'

This commit is contained in:
sebastian.sellmair
2021-03-15 14:10:45 +01:00
committed by Space
parent 56661068bd
commit f6e8afcbcc
@@ -204,8 +204,11 @@ internal class PropertiesProvider private constructor(private val project: Proje
* Allows a user to specify additional arguments of a JVM executing KLIB commonizer.
*/
val commonizerJvmArgs: String?
get() = property("kotlin.commonizer.jvmArgs")
get() = propertyWithDeprecatedVariant("kotlin.mpp.commonizerJvmArgs", "kotlin.commonizer.jvmArgs")
/**
* Enables experimental commonization of user defined c-interop libraries.
*/
val enableCInteropCommonization: Boolean
get() = booleanProperty("kotlin.mpp.enableCInteropCommonization") ?: false