[Gradle][Native] K2NativeCompilerArguments.refinesPaths: Use Array<String> instead of String

^KT-55071 Verification Pending
This commit is contained in:
Sebastian Sellmair
2022-11-23 13:05:31 +01:00
committed by Space Team
parent 5818187e57
commit 7870c82221
3 changed files with 3 additions and 3 deletions
@@ -289,7 +289,7 @@ class K2NativeCompilerArguments : CommonCompilerArguments() {
valueDescription = "<path>",
description = "Paths to output directories for refined modules (whose expects this module can actualize)"
)
var refinesPaths: String? = null
var refinesPaths: Array<String>? = null
@Argument(value = "-Xdebug-info-version", description = "generate debug info of given version (1, 2)")
var debugInfoFormatVersion: String = "1" /* command line parser doesn't accept kotlin.Int type */