summaryrefslogtreecommitdiff
path: root/Modules/FindwxWidgets.cmake
diff options
context:
space:
mode:
authorGrant Kim <enpinion@gmail.com>2019-11-12 07:24:52 -0500
committerBrad King <brad.king@kitware.com>2019-11-13 09:42:50 -0500
commitc921ec6112961304824b6bbdf7fb743f676325d0 (patch)
tree360efe69cdfb3c87866a5e57d31c4222d02b11a0 /Modules/FindwxWidgets.cmake
parentfe54989fcdd03a1f9bd674b31bac3a95a52a0fd5 (diff)
downloadcmake-c921ec6112961304824b6bbdf7fb743f676325d0.tar.gz
FindwxWidgets: Add link dependencies for MinGW
wxWidgets on MinGW requires system libraries `uuid` and `uxtheme`.
Diffstat (limited to 'Modules/FindwxWidgets.cmake')
-rw-r--r--Modules/FindwxWidgets.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindwxWidgets.cmake b/Modules/FindwxWidgets.cmake
index 79d12a72cb..4247804096 100644
--- a/Modules/FindwxWidgets.cmake
+++ b/Modules/FindwxWidgets.cmake
@@ -431,7 +431,7 @@ if(wxWidgets_FIND_STYLE STREQUAL "win32")
list(APPEND wxWidgets_LIBRARIES opengl32 glu32)
endif()
- list(APPEND wxWidgets_LIBRARIES winmm comctl32 oleacc rpcrt4 shlwapi version wsock32)
+ list(APPEND wxWidgets_LIBRARIES winmm comctl32 uuid oleacc uxtheme rpcrt4 shlwapi version wsock32)
endmacro()
#-------------------------------------------------------------------