summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2019-05-21 16:51:10 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2019-05-21 15:28:24 +0000
commit4e7756a6cd48716ff37d071fe660bb0e9edfa89f (patch)
tree6a31b217cc26d11b74fc563ed5857f1726b3b6cf
parentf8e4f94a141855d78245b0f83cac0ff8dd1575b8 (diff)
Add a few more 3rd party libraries to helper.py
Handle a few more libraries that are used in qtimageformats repi. Change-Id: Ia3b9a845bc6cb8ce98a477b9355011bbadc32c1a Reviewed-by: Liang Qi <liang.qi@qt.io> Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
-rw-r--r--util/cmake/helper.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/util/cmake/helper.py b/util/cmake/helper.py
index d9e9fd16e3..682e2ec15f 100644
--- a/util/cmake/helper.py
+++ b/util/cmake/helper.py
@@ -250,6 +250,9 @@ _library_map = [
LibraryMapping('xrender', 'XRender', 'PkgConfig::xrender'),
LibraryMapping('zlib', 'ZLIB', 'ZLIB::ZLIB', extra=['REQUIRED']),
LibraryMapping('zstd', 'ZSTD', 'ZSTD::ZSTD'),
+ LibraryMapping('tiff', 'TIFF', 'TIFF::TIFF'),
+ LibraryMapping('webp', 'WrapWebP', 'WrapWebP::WrapWebP'),
+ LibraryMapping('jasper', 'WrapJasper', 'WrapJasper::WrapJasper'),
]