Files
Troels Bjerre Lund 4f77434ea5 [K/N] Remove LLVM coverage
The -Xcoverage feature has not worked and has been disabled for a while.
This fix removes it, and all of its uses.


Co-authored-by: Troels Lund <troels@google.com>


Merge-request: KOTLIN-MR-821
Merged-by: Alexander Shabalin <alexander.shabalin@jetbrains.com>
2023-12-06 14:07:16 +00:00

44 lines
959 B
Kotlin

pluginManagement {
repositories {
mavenCentral()
}
}
val hostOs = System.getProperty("os.name")
val isMacos = hostOs == "Mac OS X"
val isLinux = hostOs == "Linux"
val isWindows = hostOs.startsWith("Windows")
/*
* The following projects are only available for certain platforms.
*
* IMPORTANT: If a new sample doesn't include interop with third-party libraries,
* add it into the 'buildSamplesWithPlatfromLibs' task in the root build.gradle.
*/
if (isMacos || isLinux || isWindows) {
include(":csvparser")
include(":curl")
include(":echoServer")
include(":globalState")
include(":html5Canvas")
include(":libcurl")
include(":videoplayer")
include(":workers")
}
if (isMacos || isLinux) {
include(":nonBlockingEchoServer")
include(":tensorflow")
}
if (isMacos) {
include(":objc")
include(":opengl")
include(":uikit")
include(":watchos")
}
if (isWindows) {
include(":win32")
}