summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-11-22 11:03:33 -0500
committerBrad King <brad.king@kitware.com>2019-11-22 11:03:33 -0500
commita5bb08a8c0eee06b7ec0b058266d8436f868f119 (patch)
tree87592a4dede0c1c71823f56930b73d40a0b5e79a
parent84408ff4025b59f268e07bc368e97fe07252be2c (diff)
downloadcmake-a5bb08a8c0eee06b7ec0b058266d8436f868f119.tar.gz
FindwxWidgets: Fix finding both release and debug libs
In commit fe54989fcd (FindwxWidgets: Add support for wxQt, 2019-11-12, v3.16.0-rc4~12^2~1) the internal `WX_FIND_LIBS` macro gained an argument but not all call sites were updated. Update the missing one now. Fixes: #20005
-rw-r--r--Modules/FindwxWidgets.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindwxWidgets.cmake b/Modules/FindwxWidgets.cmake
index 798d19a76f..4334e2254e 100644
--- a/Modules/FindwxWidgets.cmake
+++ b/Modules/FindwxWidgets.cmake
@@ -649,7 +649,7 @@ if(wxWidgets_FIND_STYLE STREQUAL "win32")
# Find wxWidgets libraries.
WX_FIND_LIBS("${PF}" "${UNV}" "${UCD}" "${DBG}")
if(WX_USE_REL_AND_DBG)
- WX_FIND_LIBS("${UNV}" "${UCD}" "d")
+ WX_FIND_LIBS("${PF}" "${UNV}" "${UCD}" "d")
endif()
# Settings for requested libs (i.e., include dir, libraries, etc.).