All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlin.commonizer.KonanDistribution.kt Maven / Gradle / Ivy

/*
 * Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
 * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
 */

package org.jetbrains.kotlin.commonizer

import org.jetbrains.kotlin.konan.library.*
import java.io.File

public data class KonanDistribution(val root: File) {
    public constructor(rootPath: String) : this(File(rootPath))
}

public val KonanDistribution.konanCommonLibraries: File
    get() = root.resolve(KONAN_DISTRIBUTION_KLIB_DIR).resolve(KONAN_DISTRIBUTION_COMMON_LIBS_DIR)

public val KonanDistribution.stdlib: File
    get() = konanCommonLibraries.resolve(KONAN_STDLIB_NAME)

public val KonanDistribution.klibDir: File
    get() = root.resolve(KONAN_DISTRIBUTION_KLIB_DIR)

public val KonanDistribution.platformLibsDir: File
    get() = klibDir.resolve(KONAN_DISTRIBUTION_PLATFORM_LIBS_DIR)

public val KonanDistribution.sourcesDir: File
    get() = root.resolve(KONAN_DISTRIBUTION_SOURCES_DIR)

public val KonanDistribution.toolsDir: File
    get() = root.resolve(KONAN_DISTRIBUTION_TOOLS_DIR)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy