仅为Kotlin / Native项目构建一个可执行文件

时间:2019-07-29 22:54:51

标签: kotlin kotlin-native

科特林/本地allows to produce multiple binaries

kotlin {
    binaries {
        executable()                       // Executable with default name.
        executable("foo")                  // Custom binary name.
        executable("bar", listOf(RELEASE)) // Custom build types.
        ...
    }
}

gradle build将触发每个可执行文件的构建。在某些时候,制作所有可执行二进制文件开始需要花费很长时间。是否可以只构建一个可执行文件?像gradle buildFoo

1 个答案:

答案 0 :(得分:1)

有些任务由Gradle插件自己生成,其名称构造为run(execName)(buildtype)Executable(OS)。另外,您可以使用任务link(execName)(buildtype)Executable(OS)来生成二进制文件。