Fix linking of the GUI test when using static libraries
We need to explicitly link with the system libraries required in this case, as static wxwebview library doesn't pull them in (it's also better to link with them explicitly even when using shared libraries, but in this case linking at least still worked due to transitive dependencies).
This commit is contained in:
parent
29030d0c05
commit
bde95c388c
10 changed files with 52 additions and 46 deletions
|
|
@ -289,7 +289,9 @@
|
|||
wxWebView or wxSTC is not available.
|
||||
-->
|
||||
<sys-lib>$(WXLIB_WEBVIEW)</sys-lib>
|
||||
<ldlibs>$(EXTRALIBS_WEBVIEW)</ldlibs>
|
||||
<sys-lib>$(WXLIB_STC)</sys-lib>
|
||||
<ldlibs>$(EXTRALIBS_STC)</ldlibs>
|
||||
<wx-lib>aui</wx-lib>
|
||||
<wx-lib>richtext</wx-lib>
|
||||
<wx-lib>media</wx-lib>
|
||||
|
|
@ -320,7 +322,9 @@
|
|||
wxWebView or wxSTC is not available.
|
||||
-->
|
||||
<sys-lib>$(WXLIB_WEBVIEW)</sys-lib>
|
||||
<ldlibs>$(EXTRALIBS_WEBVIEW)</ldlibs>
|
||||
<sys-lib>$(WXLIB_STC)</sys-lib>
|
||||
<ldlibs>$(EXTRALIBS_STC)</ldlibs>
|
||||
<wx-lib>core</wx-lib>
|
||||
<wx-lib>net</wx-lib>
|
||||
<wx-lib>base</wx-lib>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue