Files
kotlin-fork/samples/symbolication/build.gradle
T
2019-06-05 15:01:14 +07:00

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 {
}
}
}
}