aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts/main.py
diff options
context:
space:
mode:
authorShyamnath Premnadh <[email protected]>2023-06-20 12:24:49 +0200
committerShyamnath Premnadh <[email protected]>2023-06-20 15:24:19 +0200
commit82da2596c46bf74a110620901ada6d801cea0866 (patch)
tree84157f2ba8d56b21d99b6c2962b6b5c77bf6ae81 /build_scripts/main.py
parent6bcc55e3287cb2e5f9914834bb6514d4d2aca0b8 (diff)
Android Wheels: Include all Android Qt modules
- Earlier only some modules were built since we were in testing phase. With this patch, all the supported Qt for Android modules are built for PySide. Task-number: PYSIDE-1612 Change-Id: I6ab55b449fac18167e61b83b001e63be506d5085 Reviewed-by: Friedemann Kleint <[email protected]>
Diffstat (limited to 'build_scripts/main.py')
-rw-r--r--build_scripts/main.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/build_scripts/main.py b/build_scripts/main.py
index 58bd40787..774353203 100644
--- a/build_scripts/main.py
+++ b/build_scripts/main.py
@@ -42,7 +42,7 @@ from .utils import (copydir, copyfile, detect_clang,
linux_fix_rpaths_for_library, macos_fix_rpaths_for_library,
platform_cmake_options, remove_tree, run_process,
run_process_output, update_env_path, which)
-from . import PYSIDE, PYSIDE_MODULE, SHIBOKEN, ANDROID_ESSENTIALS
+from . import PYSIDE, PYSIDE_MODULE, SHIBOKEN
from .wheel_override import get_bdist_wheel_override, wheel_module_exists
from .wheel_utils import (get_package_timestamp, get_package_version,
macos_plat_name, macos_pyside_min_deployment_target)
@@ -636,9 +636,6 @@ class PysideBuild(_build, CommandMixin, BuildInfoCollectorMixin):
module_sub_set += ';'
module_sub_set += m
cmake_cmd.append(f"-DMODULES={module_sub_set}")
- elif str(OPTION['PLAT_NAME']).startswith("android"):
- modules = ';'.join(ANDROID_ESSENTIALS)
- cmake_cmd.append(f"-DMODULES={modules}")
if OPTION["SKIP_MODULES"]:
skip_modules = ''