20 lines
405 B
Groovy
20 lines
405 B
Groovy
plugins {
|
|
id 'kotlin-multiplatform'
|
|
}
|
|
|
|
// Determine host preset.
|
|
def hostPreset = MPPTools.defaultHostPreset(project)
|
|
|
|
kotlin {
|
|
targetFromPreset(hostPreset, 'symbolication') {
|
|
binaries {
|
|
executable() {
|
|
entryPoint = 'symbolication.main'
|
|
}
|
|
}
|
|
compilations.main.cinterops {
|
|
coreSymbolication {
|
|
}
|
|
}
|
|
}
|
|
} |