You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've tried building wxlua and wxwidgets as a static library (as described here), and everything works fine. Now, I need to have wxWidgets as a shared library, to expose some of its functionality to other libraries I plan to use. So, I've build wxWidgets 3.2.6 and 3.2.2.1 (not sure if the version is relevant, as the issue is related to finding the libraries) as a shared monolithic library:
There's no .a or .dll that the cmake script relies on to parse the configuration here.
Same goes for non-monolithic build, but the libraries output is a bit different:
Found wxWidgets: -L/home/user/build_test_dynamic_separate/deps/lib;;;-Wl,--subsystem,windows;-mwindows;-lwx_mswu_xrc-3.2;-lwx_baseu_xml-3.2;-lwx_mswu_media-3.2;-lwx_mswu_richtext-3.2;-lwx_mswu_propgrid-3.2;-lwx_mswu_gl-3.2;-lwx_mswu_html-3.2;-lwx_mswu_core-3.2;-lwx_baseu_net-3.2;-lwx_baseu-3.2 (found version "3.2.2")
As you can see, there's no .a or .dll as well.
Is there any way to fix this build?
The text was updated successfully, but these errors were encountered:
I've tried building wxlua and wxwidgets as a static library (as described here), and everything works fine. Now, I need to have wxWidgets as a shared library, to expose some of its functionality to other libraries I plan to use. So, I've build wxWidgets 3.2.6 and 3.2.2.1 (not sure if the version is relevant, as the issue is related to finding the libraries) as a shared monolithic library:
The result is
libwx_mswu-3.2.dll.a
inINSTALL_DIR/lib
andwxmsw32u_gcc_custom.dll
inINSTALL_DIR/bin
. Then I'm trying to build wxlua like this:and I get the following result:
I think the issue lies somewhere in the
wx-config
, because when I call it I get the following:There's no
.a
or.dll
that the cmake script relies on to parse the configuration here.Same goes for non-monolithic build, but the libraries output is a bit different:
As you can see, there's no
.a
or.dll
as well.Is there any way to fix this build?
The text was updated successfully, but these errors were encountered: