diff options
| author | Cristián Maureira-Fredes <cristian.maureira-fredes@qt.io> | 2023-03-06 13:42:27 +0100 |
|---|---|---|
| committer | Cristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io> | 2023-03-21 13:49:42 +0100 |
| commit | ffb87075e3c4ea4b0a2dd15321af8c1921e33164 (patch) | |
| tree | de244668134396b72ca56accbe060298edc4a337 /build_scripts/options.py | |
| parent | c38b238f8633f1806ee837f839afcb184455ca44 (diff) | |
build: remove examples from wheels and installation
To reduce the size and cluttering of wheels and installations
the examples are not including any longer.
The recommended way to get examples now is to download them
directly from the Example Gallery in the documentation page.
The option no-examples was removed.
[ChangeLog][pyside6] Examples are not included in the wheels anymore
and the option no-example was removed.
Change-Id: I94fb24f9ffd6c55e2762e7c2e380b0f0ffe0bf61
Fixes: PYSIDE-2247
Reviewed-by: Adrian Herrmann <adrian.herrmann@qt.io>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'build_scripts/options.py')
| -rw-r--r-- | build_scripts/options.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/build_scripts/options.py b/build_scripts/options.py index ec9d4783a..5d4c44203 100644 --- a/build_scripts/options.py +++ b/build_scripts/options.py @@ -200,7 +200,6 @@ class CommandMixin(object): ('ignore-git', None, 'Do update subrepositories'), ('skip-docs', None, 'Skip documentation build (deprecated)'), ('build-docs', None, 'Build the API documentation'), - ('no-examples', None, 'Do not build examples'), ('no-jom', None, 'Do not use jom (MSVC)'), ('build-tests', None, 'Build tests'), ('use-xvfb', None, 'Use Xvfb for testing'), @@ -263,7 +262,6 @@ class CommandMixin(object): self.ignore_git = False self.skip_docs = False self.build_docs = False - self.no_examples = False self.no_jom = False self.build_tests = False self.use_xvfb = False @@ -378,8 +376,8 @@ class CommandMixin(object): OPTION['IGNOREGIT'] = self.ignore_git OPTION['SKIP_DOCS'] = self.skip_docs OPTION['BUILD_DOCS'] = self.build_docs - OPTION['NOEXAMPLES'] = self.no_examples OPTION['BUILDTESTS'] = self.build_tests + OPTION['NO_JOM'] = self.no_jom OPTION['XVFB'] = self.use_xvfb OPTION['REUSE_BUILD'] = self.reuse_build |
