summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2019-01-30 16:41:45 +0100
committerTobias Hunger <tobias.hunger@qt.io>2019-01-31 13:58:07 +0000
commit645002cd43eb24051504d7dc60ea3ac961d16121 (patch)
treeb04cd949846bdbe993b40f2740e4198eb5e85e52 /util
parent3e36bcdca02e551ddebc0bf34a5b706afba4eba2 (diff)
CMake: pro2cmake.py: Handle more libraries
Change-Id: I561b619c4dbc56a1f6ad383a68ce4b82858a031c Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Diffstat (limited to 'util')
-rw-r--r--util/cmake/helper.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/util/cmake/helper.py b/util/cmake/helper.py
index 759f61a383..872f968ba1 100644
--- a/util/cmake/helper.py
+++ b/util/cmake/helper.py
@@ -205,8 +205,16 @@ def substitute_platform(platform: str) -> str:
libray_mapping = {
- 'zlib': 'ZLIB::ZLIB',
+ 'libdl': '${CMAKE_DL_LIBS}',
+ 'doubleconversion': 'double-conversion',
'glib': 'GLIB2::GLIB2',
+ 'icu': 'ICU::i18n ICU::uc ICU::data',
+ 'libatomic': 'Atomic',
+ 'libproxy': 'LibProxy::LibProxy',
+ 'pcre2': 'PCRE2',
+ 'librt': 'WrapRt',
+ 'zlib': 'ZLIB::ZLIB',
+ 'zstd': 'ZSTD::ZSTD',
}