diff options
author | luigi1111 <luigi1111w@gmail.com> | 2018-09-04 13:28:52 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2018-09-04 13:28:52 -0500 |
commit | 6cc1ed8dc1c74027f51f3e31e98136f2c82380f9 (patch) | |
tree | dc58461422809af77f263c10c2c86568c6741074 | |
parent | Merge pull request #4294 (diff) | |
parent | Windows: fix undefined references after unbound submodule update (diff) | |
download | monero-6cc1ed8dc1c74027f51f3e31e98136f2c82380f9.tar.xz |
Merge pull request #4295
ce63d56 Windows: fix undefined references after unbound submodule update (iDunk5400)
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0834cea75..8f2bdc78a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -810,7 +810,7 @@ endif() include_directories(SYSTEM ${Boost_INCLUDE_DIRS}) if(MINGW) set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wa,-mbig-obj") - set(EXTRA_LIBRARIES mswsock;ws2_32;iphlpapi) + set(EXTRA_LIBRARIES mswsock;ws2_32;iphlpapi;crypt32) set(ICU_LIBRARIES ${Boost_LOCALE_LIBRARY} icuio icuin icuuc icudt icutu iconv) elseif(APPLE OR OPENBSD OR ANDROID) set(EXTRA_LIBRARIES "") |