Hi.
Is it possible to develop CxxWrap module which depend on dll lib?
Since we directly load dll in jl
file and one dll cant load another.
module CppTypes
using CxxWrap
@wrapmodule(() -> "libcore.dll", :define_julia_module)
function __init__()
@initcxx
end
end
For example my module could use some special numerical library via dll.
It seem possible to use dll by embedding julia bindings into exe (JLuna seems to allow bindings within exe which could load dlls and of cource Julia allow to bind functions and structures, which is rather difficult)
Sad, but CxxWrap could not work this way.