aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
blob: 276d8e6ded4ad93a8cb5ec7accf3cbee7116c0f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
plugins {
    kotlin("multiplatform") version "1.3.21"
}

repositories {
    mavenCentral()
}

kotlin {
    linuxX64("run") {
        binaries {
            executable()
        }
    }
}