Skip to content

Commit

Permalink
fix post processing script
Browse files Browse the repository at this point in the history
  • Loading branch information
leovan committed Nov 12, 2023
1 parent c45781c commit e3cff93
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions building/post_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,8 @@ def post_process_linux(dist_folder):

path_func = lambda lib: os.path.join(linux_app_path, '_internal', 'lib{}.so.6'.format(lib.replace('Qt', 'Qt6')))
remove_files(USELESS_QT_LIBS, path_func)
path_func = lambda lib: os.path.join(linux_app_path, '_internal', 'PySide6', 'Qt', 'lib', 'lib{}.so.6'.format(lib.replace('Qt', 'Qt6')))
remove_files(USELESS_QT_LIBS, path_func)
path_func = lambda lib: os.path.join(linux_app_path, '_internal', 'PySide6', 'Qt', 'qml', lib)
remove_dirs(USELESS_QT_LIBS, path_func)

Expand Down

0 comments on commit e3cff93

Please sign in to comment.