Move Gradle property 'kotlin.commonizer.jvmArgs' to 'kotlin.mpp.commonizerJvmArgs'
This commit is contained in:
committed by
Space
parent
56661068bd
commit
f6e8afcbcc
+4
-1
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user