Kotlin/Native as a Dynamic Library

Hi,

i try out the tutorial " Kotlin/Native as a Dynamic Library" (https://kotlinlang.org/docs/tutorials/native/dynamic-libraries.html#compiling-and-running-the-example-on-windows) - all work fine - i try to load the dll in windows. The libnative.lib is generated and linked to the C++ exe. The only problem what i have when i start the C++ exe - startup message : libnative_symbols.dll not found (if i open the lib file with a editor - i see also this (libnative_symbols.dll /0 1604251154 0 533) - command to generate the necessary libnative.lib is from the tutorial: ```
lib /def:libnative_symbols.def /out:libnative.lib

What is going wrong?