diff options
| author | rbrunner7 <rbrunner@dreamshare.ch> | 2018-03-08 19:10:44 +0100 |
|---|---|---|
| committer | rbrunner7 <rbrunner@dreamshare.ch> | 2018-03-08 19:10:44 +0100 |
| commit | 733deab249c59b6ef2145b69759eb82ffa34924d (patch) | |
| tree | 4458755b11b36cae15d988df2254496c3206048e | |
| parent | e9f41e405f1f75533ef6e9d5adc76ba41dd29e8c (diff) | |
| download | monzero-core-733deab249c59b6ef2145b69759eb82ffa34924d.tar.gz monzero-core-733deab249c59b6ef2145b69759eb82ffa34924d.tar.xz monzero-core-733deab249c59b6ef2145b69759eb82ffa34924d.zip | |
Adjust to the MSYS2/MinGW static ICU library file renaming
In package mingw-w64-x86_64-icu, version 58.2-3, the names of static
library files were changed, which leads to changes in CMakeLists.txt as
needed for compiling for Windows.
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index aac15b5b6..08b47eaf6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -800,7 +800,7 @@ endif() include_directories(SYSTEM ${Boost_INCLUDE_DIRS}) if(MINGW) set(EXTRA_LIBRARIES mswsock;ws2_32;iphlpapi) - set(ICU_LIBRARIES ${Boost_LOCALE_LIBRARY} sicuio sicuin sicuuc sicudt sicutu iconv) + set(ICU_LIBRARIES ${Boost_LOCALE_LIBRARY} icuio icuin icuuc icudt icutu iconv) elseif(APPLE OR OPENBSD OR ANDROID) set(EXTRA_LIBRARIES "") elseif(FREEBSD) |
