diff options
author | Michał Janiszewski <janisozaur@gmail.com> | 2018-03-10 21:16:14 -0800 |
---|---|---|
committer | Michał Janiszewski <janisozaur@gmail.com> | 2018-03-10 21:16:14 -0800 |
commit | 25e604777b7d0c4fdc2a61fabae9a0dbbcfae430 (patch) | |
tree | 00a797765d5eaf168e39a5ab06261ed6462f0860 /CMakeLists.txt | |
parent | b71091e995fe600cc5d934cd62ee275ca0381273 (diff) |
Fix ARM builds with MSVC
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8f1e828d15..667b81ada4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1261,7 +1261,7 @@ elseif(WINDOWS) endif() # Libraries for Win32 native and MinGW - list(APPEND EXTRA_LIBS user32 gdi32 winmm imm32 ole32 oleaut32 version uuid) + list(APPEND EXTRA_LIBS user32 gdi32 winmm imm32 ole32 oleaut32 version uuid advapi32 shell32) # TODO: in configure.in the check for timers is set on # cygwin | mingw32* - does this include mingw32CE? |