6c4a6e2a02
Merge-request: KT-MR-13448 Merged-by: Artem Olkov <artem.olkov@jetbrains.com>
39 lines
739 B
Kotlin
39 lines
739 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
description = "Printer for SIR"
|
|
|
|
kotlin {
|
|
explicitApi()
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(kotlinStdlib())
|
|
|
|
api(project(":native:swift:sir"))
|
|
|
|
implementation(project(":core:util.runtime"))
|
|
|
|
testApi(platform(libs.junit.bom))
|
|
testRuntimeOnly(libs.junit.jupiter.engine)
|
|
testImplementation(libs.junit.jupiter.api)
|
|
|
|
testImplementation(projectTests(":compiler:tests-common"))
|
|
testImplementation(projectTests(":compiler:tests-common-new"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
val testDataDir = projectDir.resolve("testData")
|
|
|
|
projectTest(jUnitMode = JUnitMode.JUnit5) {
|
|
inputs.dir(testDataDir)
|
|
useJUnitPlatform { }
|
|
}
|
|
|
|
testsJar()
|