1. 程式人生 > >IDEA執行kotlin native

IDEA執行kotlin native

今天試了下kotlin native,好久沒玩過這個玩意兒了。
在這裡插入圖片描述
然後建了一個kotlin native的工程
在這裡插入圖片描述
發現IDEA一直在說是多平臺專案
Kotlin Multiplatform Projects are an experimental feature.
執行kotlin native程式
在這裡插入圖片描述
沒有直接的綠色的執行條,比較遺憾,執行還得靠gradle。
所有的輸出結果

23:32:17: Executing task 'runProgram'...


> Configure project :
Kotlin Multiplatform Projects are an experimental feature.

> Task :linkReleaseExecutableMingw

> Task :runProgram
Hello, Kotlin/Native!

Deprecated Gradle features were used in this build, making it incompatible with Gradle 6.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/5.0/userguide/command_line_interface.html#sec:command_line_warnings

BUILD SUCCESSFUL in 22s
2 actionable tasks: 2 executed
23:32:40: Task execution finished 'runProgram'.

想到的一些問題

  • 如何使用第三方C庫
  • 如何使用第三方java庫(不知道可不可以)