com.monkopedia.klinker.plugin
Owner: Jason Monk
Tool to link kotlin/native binaries with clang or other linkers
https://github.com/monkopedia/klinker
Sources: https://github.com/monkopedia/klinker
Version 0.1.2 (latest)
0.1.2
Created 14 September 2023.
Tool to link kotlin/native binaries with clang or other linkers
Using the plugins DSL:
plugins {
id("com.monkopedia.klinker.plugin") version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.monkopedia.klinker:plugin:0.1.2")
}
}
apply(plugin = "com.monkopedia.klinker.plugin")
Using the plugins DSL:
plugins {
id "com.monkopedia.klinker.plugin" version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.monkopedia.klinker:plugin:0.1.2"
}
}
apply plugin: "com.monkopedia.klinker.plugin"