Link with shlwapi.lib and version.lib under MSW

These libraries are required now that we don't load the functions from them
dynamically (see e78be14ac1)

Closes #17180
This commit is contained in:
Vadim Zeitlin
2015-10-07 18:31:43 +02:00
parent aa970c3da3
commit 5cce48186c
598 changed files with 2730 additions and 2711 deletions

View File

@@ -33,6 +33,11 @@ Changes in behaviour which may result in build errors
- "webview" library is not included in `wx-config --libs` output any more, you
need to request it explicitly, e.g. `wx-config --libs std,webview`.
- wxMSW now requires linking with shlwapi.lib and version.lib. This is done
automatically in most cases, but if you use a static build of the library
with a non-MSVC compiler such as MinGW and do not use wx-config, then you
will need to add these libraries to your make or project files yourself.
- WXWIN_OS_DESCRIPTION doesn't exist any longer, use wxGetOsDescription().