5eeb82bb6f
Now that SIR has finally landed in the repository, we can remove unnecessary entities from the bridge generator.
33 lines
660 B
Kotlin
33 lines
660 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
description = "SIR to Kotlin bindings generator"
|
|
|
|
dependencies {
|
|
compileOnly(kotlinStdlib())
|
|
|
|
api(project(":native:swift:sir"))
|
|
|
|
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()
|
|
generatedTestDir()
|
|
}
|
|
}
|
|
|
|
projectTest(jUnitMode = JUnitMode.JUnit5) {
|
|
workingDir = rootDir
|
|
useJUnitPlatform { }
|
|
}
|
|
|
|
testsJar() |