We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b395b7 commit d461fb7Copy full SHA for d461fb7
modules/bcv-gradle-plugin/src/main/kotlin/targets/KLibValidationSpec.kt
@@ -36,6 +36,13 @@ interface KLibValidationSpec {
36
@get:Optional
37
val signatureVersion: Property<KLibSignatureVersion>
38
39
+ /**
40
+ * Sets the value of [signatureVersion].
41
+ * @see signatureVersion
42
+ */
43
+ fun signatureVersion(version: Int): Unit =
44
+ signatureVersion.set(KLibSignatureVersion.of(version))
45
+
46
/**
47
* Fail validation if some build targets are not supported by the host compiler.
48
* By default, ABI dumped only for supported files will be validated. This option makes validation behavior
0 commit comments