blob: 7c98c54ca6887def31fa93ec2905e159408ef5fa [file] [log] [blame] [edit]
/*
* 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")
}
create("env"){
dependsOn(":kotlin-native:dependencies:update")
}
}
val hostName: String by project
val build by tasks.registering {
dependsOn("${hostName}Files")
dependsOn("${hostName}Env")
}
val clean by tasks.registering {
doFirst {
delete(buildDir)
}
}