Skip to content

Commit

Permalink
don't bundle Qt in light builds
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Sep 10, 2024
1 parent 3913c6f commit cc880e3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packaging/MSWindows/BUILD.sh
Original file line number Diff line number Diff line change
Expand Up @@ -538,6 +538,10 @@ for i in `seq 4`; do
find share/icons -type d -exec rmdir {} \; 2> /dev/null
done

if [ "${DO_FULL}" == "0" ]; then
rm qt.conf
fi

#leave ./dist
popd > /dev/null

Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2005,6 +2005,8 @@ def add_service_exe(script, icon, base_name) -> None:

if qt6_client_ENABLED:
external_includes.append("PyQt6")
else:
remove_packages("PyQt6")

if shadow_ENABLED:
external_includes.append("watchdog")
Expand Down

0 comments on commit cc880e3

Please sign in to comment.