Skip to content

Commit 208d527

Browse files
committed
Add resource paks for QtWebEngine
1 parent bd7573c commit 208d527

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

freeze.py

+3
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,9 @@ def find_files(directory, patterns):
218218
web_process_path = "/usr/lib/x86_64-linux-gnu/qt5/libexec/QtWebEngineProcess"
219219
if os.path.exists(web_process_path):
220220
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)))
221224

222225
# Append Linux ICON file
223226
iconFile += ".svg"

0 commit comments

Comments
 (0)