Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/how-to-guides/meson-args.rst
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,14 @@ permanently in the project's ``pyproject.toml``:
[tool.meson-python.args]
setup = ['--vsenv']

And in case you don't want to set ``--vsenv`` as the default, but do want to
build Windows wheels with MSVC in CI using cibuildwheel:

.. code-block:: toml

[tool.cibuildwheel.windows]
config-settings = { setup-args = ["--vsenv"] }

To set this option temporarily at build-time:

.. tab-set::
Expand Down