We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd7573c commit 208d527Copy full SHA for 208d527
freeze.py
@@ -218,6 +218,9 @@ def find_files(directory, patterns):
218
web_process_path = "/usr/lib/x86_64-linux-gnu/qt5/libexec/QtWebEngineProcess"
219
if os.path.exists(web_process_path):
220
external_so_files.append((web_process_path, os.path.basename(web_process_path)))
221
+ web_process_resource_path = "/usr/share/qt5/resources"
222
+ for filename in find_files(web_process_resource_path, ["*"]):
223
+ src_files.append((filename, os.path.basename(filename)))
224
225
# Append Linux ICON file
226
iconFile += ".svg"
0 commit comments