1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-10 22:31:40 +02:00

Fix libpng linkage - shared on all platforms other than iOS

This commit is contained in:
Ivan Savenko
2024-09-19 17:57:27 +00:00
parent ab2c5ba64f
commit 55916fad0a

View File

@@ -47,7 +47,7 @@ class VCMI(ConanFile):
self.options["freetype"].shared = self.settings.os == "Android"
# SDL_image and Qt depend on it, in iOS both are static
self.options["libpng"].shared = not self.settings.os != "iOS"
self.options["libpng"].shared = self.settings.os != "iOS"
# static Qt for iOS is the only viable option at the moment
self.options["qt"].shared = self.settings.os != "iOS"