Files
kotlin-fork/kotlin-native/common/build.gradle.kts
T
Svyatoslav Scherbina 0730833135 Remove kotlin-native/common/src/hash
It is no longer used.
2021-03-22 16:03:31 +00:00

27 lines
472 B
Kotlin

/*
* Copyright 2010-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the LICENSE file.
*/
plugins {
id("compile-to-bitcode")
}
bitcode {
create("files"){
dependsOn(":kotlin-native:dependencies:update")
}
}
val hostName: String by project
val build by tasks.registering {
dependsOn("${hostName}Files")
}
val clean by tasks.registering {
doLast {
delete(buildDir)
}
}