so, I tried to create a glfw helloWorld <https://g...
# kotlin-native
e
so, I tried to create a glfw helloWorld https://github.com/elect86/glfw,
cinterop
is fine, but when it's time to build:
m
For
undefined symbol: glfwInit
and so on - there linker cannot find
libglfw.so
, so adding
-lglfw
to
LINKER_ARGS_linux
should fix. And similar for other link errors.
e
it works, thanks Mike!