aboutsummaryrefslogtreecommitdiffstats
path: root/coin_build_instructions.py
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2022-12-15 16:38:49 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2022-12-19 17:03:39 +0100
commitae4131593c7052b24ed34bd112d0c7adcc6dae65 (patch)
treeb05f9c2dee6c511c4913e8679e22cf177e09861b /coin_build_instructions.py
parent277783b47e704505f19d00dd80f26239082974d6 (diff)
COIN: Use --unity builds
Task-number: PYSIDE-2155 Change-Id: I3c0aa2dbfe273b7a36292475233e6057683dcf4e Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'coin_build_instructions.py')
-rw-r--r--coin_build_instructions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coin_build_instructions.py b/coin_build_instructions.py
index 8a8182234..2755ee3bb 100644
--- a/coin_build_instructions.py
+++ b/coin_build_instructions.py
@@ -104,7 +104,7 @@ def call_setup(python_ver, phase):
cmd = [env_python, "-u", "setup.py"]
if phase in ["BUILD"]:
- cmd += ["build", "--standalone"]
+ cmd += ["build", "--standalone", "--unity"]
elif phase in ["WHEEL"] or CI_RELEASE_CONF:
cmd += ["bdist_wheel", "--reuse-build", "--standalone", "--skip-cmake", "--skip-make-install", "--only-package"]