I am learning C Interop with Kotlin Native. I successfully imported my sample C program using .Def
file and executed the code in kotlin
So, I am thinking about import GTK4 libs, which is in C, to Kotlin/Native project and try a GTK app there
But since GTK4 have lot of header files and linking libs, I don't know how to import them
I successfully executed GTK4 sample program in CLion C++ project.
But need to know how to import the GTK4 libs and headers to Kotlin/Native project
My Cmake in Clion project
cmake_minimum_required(VERSION 3.24)
project(HexEditor)
set(CMAKE_CXX_STANDARD 20)
find_package(PkgConfig REQUIRED)
pkg_check_modules(GTK4 REQUIRED gtk4)
include_directories(${GTK4_INCLUDE_DIRS})
link_directories(${GTK4_LIBRARY_DIRS})
add_definitions(${GTK4_CFLAGS_OTHER})
add_executable(HexEditor main.cpp)
target_link_libraries(HexEditor ${GTK4_LIBRARIES})
How to map them in .def
file of Kotlin/Native ?
I think it's good to use pkg-config, but this may require some workarounds, .def files do not support the execution of pkg-config, which is an executable program, so you should generate def files more dynamically.
generate_def.sh
Such a script can basically meet most needs, but I am not satisfied. I hope this can be integrated into the gradle task, and can use the gradle task cache to improve efficiency, and it will be more friendly to ci/cd.
build.gradle.kts
wrote the above answer without ide prompt, so you need to be extra careful I may bring some spelling mistakes, ide will help you