How can pass a linker option to points at non Appl...
# kotlin-native
c
How can pass a linker option to points at non Apple framework. I tried in my def file something like
linkerOpts = -framework AVFoundation -framework full/path/to/my/Framework
and also
linkerOpts = -framework AVFoundation -F path/to/my/framework/folder
-framework MyFramework` but it does not work. I keep on receiving this type of error:
ld: framework not found MyFramework
it is ok I found it
linkerOpts = -framework AVFoundation -F path/to/my/framework/folder -framework MyFramework
works