Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorj.spijker@ultimaker.com <jelle spijker>2022-07-01 07:37:34 +0300
committerJelle Spijker <j.spijker@ultimaker.com>2022-07-01 07:37:34 +0300
commitf3ebf984407c4530b506a8126056c8760ddf8277 (patch)
tree383abcc656d6a524d94d5f8629d6e361998db246 /conanfile.py
parent3fe0f26e94b6e54a738b4cfeab35cffba17eafc7 (diff)
Only use upx on Windows
Contributes to CURA-9365
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/conanfile.py b/conanfile.py
index 80df016d6f..60d6c63823 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -188,7 +188,8 @@ class CuraConan(ConanFile):
hiddenimports = pyinstaller_metadata["hiddenimports"],
collect_all = pyinstaller_metadata["collect_all"],
icon = icon_path,
- entitlements_file = entitlements_file
+ entitlements_file = entitlements_file,
+ upx = str(self.settings.os == "Windows")
))
def source(self):