summaryrefslogtreecommitdiffstats
path: root/Modules/FindwxWidgets.cmake
diff options
context:
space:
mode:
authorGrant Kim <enpinion@gmail.com>2019-11-12 12:24:52 (GMT)
committerBrad King <brad.king@kitware.com>2019-11-13 14:42:50 (GMT)
commitc921ec6112961304824b6bbdf7fb743f676325d0 (patch)
tree360efe69cdfb3c87866a5e57d31c4222d02b11a0 /Modules/FindwxWidgets.cmake
parentfe54989fcdd03a1f9bd674b31bac3a95a52a0fd5 (diff)
downloadCMake-c921ec6112961304824b6bbdf7fb743f676325d0.zip
CMake-c921ec6112961304824b6bbdf7fb743f676325d0.tar.gz
CMake-c921ec6112961304824b6bbdf7fb743f676325d0.tar.bz2
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 79d12a7..4247804 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()
#-------------------------------------------------------------------