Closed mgautierfr closed 1 year ago
On windows (msvc?), functions are by default hidden (in contrast to gcc).
We must correctly export our public API.
Either with __declspec(dllexport) in function/method declaration (to do with a macro for portability) Or with a .def file.
__declspec(dllexport)
.def
See #741 and https://github.com/mesonbuild/meson/issues/7838
On windows (msvc?), functions are by default hidden (in contrast to gcc).
We must correctly export our public API.
Either with
__declspec(dllexport)
in function/method declaration (to do with a macro for portability) Or with a.def
file.See #741 and https://github.com/mesonbuild/meson/issues/7838