我正在尝试创建一个能够与AWS IoT服务进行通信的小型应用程序。因为我希望它很小,并且想尝试一些新的东西,所以我决定选择Kotlin Native。我很快注意到,AWS发布了其C ++库,使您可以轻松连接到我下载的AWS IoT服务(https://github.com/aws/aws-iot-device-sdk-cpp/tree/release),甚至可以与MinGW进行编译(是的,我在Windows上)。我注意到它生成了一堆* .o文件。我认为现在是将其导入我的Kotlin Native项目的合适时机。我的build.gradle文件现在看起来完全是标准的
plugins {
id 'kotlin-multiplatform' version '1.3.11'
}
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 ''
}
}
}
由于某种原因,我找不到任何有关如何添加我刚编译的依赖项的示例。通常,在编写C ++代码时,必须分别指定Include目录和Lib目录的路径。 AFAIK这不是gradle提供的现成的东西。那我怎么导入这个依赖呢?或者,也许有一些我可以简单地摆脱这种依赖的集中式存储库,就像当今仍在使用的几乎所有其他编程语言一样?至少这个特定的库似乎在NuGet上不可用:/
答案 0 :(得分:0)
Kotlin / Native目前不能与C ++互操作。 [1] 但是,您可以为任何C ++库创建C包装器,它的功能来自Kotlin / Native [2] 。
使用多平台gradle插件时,您可以使用以下语法定义本机互操作:
kotlin {
linuxX64 { // Replace with a target you need.
compilations.main {
cinterops {
myInterop {
// Def-file describing the native API.
// The default path is src/nativeInterop/cinterop/<interop-name>.def
defFile project.file("def-file.def")
// Package to place the Kotlin API generated.
packageName 'org.sample'
// Options to be passed to compiler by cinterop tool.
compilerOpts '-Ipath/to/headers'
// Directories for header search (an analogue of the -I<path> compiler option).
includeDirs.allHeaders("path1", "path2")
// Additional directories to search headers listed in the 'headerFilter' def-file option.
// -headerFilterAdditionalSearchPrefix command line option analogue.
includeDirs.headerFilterOnly("path1", "path2")
// A shortcut for includeDirs.allHeaders.
includeDirs("include/directory", "another/directory")
}
anotherInterop { /* ... */ }
}
}
}
}
如果仅定义互操作名称,则插件将在.def
目录中查找src/nativeInterop/cinterop/
文件 [3] 并使用它(在这种情况下,{ {1}}。
src/nativeInterop/cinterop/myInterop.def
kotlin {
linuxX64 {
compilations.main {
cinterops {
myInterop {
}
}
}
}
}
文件 [3] 包含有关您要使用的库的信息,通常看起来像这样。
.def
有关headers = png.h
headerFilter = png.h
package = png
的更多信息:https://kotlinlang.org/docs/reference/native/c_interop.html
有关多平台项目的更多信息:https://kotlinlang.org/docs/reference/building-mpp-with-gradle.html