因此,我尝试使用intellij创建kotlin / native应用程序(我在项目创建中选择了模板kotlin-> kotlin / native)。它创建了示例gradle hello world项目。下载所有依赖项后,该文件将编译为exe文件并正常运行。但是现在我需要包括som库,但我不知道怎么做。首先,我只想包含任何jar库(例如jackson-core)。这就是build.gradle文件的样子:
plugins {
id 'kotlin-multiplatform' version '1.3.0'
}
repositories {
mavenCentral()
}
kotlin {
targets {
// For ARM, preset should be changed to presets.iosArm32 or presets.iosArm64
// For Linux, preset should be changed to e.g. presets.linuxX64
// For MacOS, preset should be changed to e.g. presets.macosX64
fromPreset(presets.mingwX64, 'mingw')
configure([mingw]) {
// Comment to generate Kotlin/Native library (KLIB) instead of executable file:
compilations.main.outputKinds('EXECUTABLE')
// Change to specify fully qualified name of your application's entry point:
compilations.main.entryPoint = 'sample.main'
}
}
sourceSets {
// Note: To enable common source sets please comment out 'kotlin.import.noCommonSourceSets' property
// in gradle.properties file and re-import your project in IDE.
mingwMain {
}
mingwTest {
}
}
}
task runProgram {
def buildType = 'release' // Change to 'debug' to run application with debug symbols.
dependsOn "link${buildType.capitalize()}ExecutableMingw"
doLast {
def programFile = kotlin.targets.mingw.compilations.main.getBinary('EXECUTABLE', buildType)
exec {
executable programFile
args ''
}
}
}
我尝试添加
dependencies {
implementation fileTree(dir: 'lib', include: ['*.jar'])
}
和
dependencies {
compile fileTree(dir: 'lib', include: ['*.jar'])
}
在每个部分中都无济于事。我仍然无法从jackson包中导入任何内容,并且它也没有出现在想法的“外部库”部分中。我还尝试指定lib的全名,并使用其他名称代替实现或编译-仍然没有结果。我在这里想念什么?