diff options
author | Paul Monson <paulmon@users.noreply.github.com> | 2019-04-12 16:55:57 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2019-04-12 16:55:57 (GMT) |
commit | f4e5661e85ac41c987165246d2b33f363cd01e34 (patch) | |
tree | db0b47a72c422139e38d3b6cf798186987e9893d /PC/layout/support/options.py | |
parent | aa25d5d026b21a6bac66ff1c47e96cbf6227473a (diff) | |
download | cpython-f4e5661e85ac41c987165246d2b33f363cd01e34.zip cpython-f4e5661e85ac41c987165246d2b33f363cd01e34.tar.gz cpython-f4e5661e85ac41c987165246d2b33f363cd01e34.tar.bz2 |
bpo-36509: Add iot layout for Windows IoT containers (GH-12663)
This enables using the `--preset-iot` option with the PC/layout script, but does not enable IoT builds as part of any normal release.
Diffstat (limited to 'PC/layout/support/options.py')
-rw-r--r-- | PC/layout/support/options.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/PC/layout/support/options.py b/PC/layout/support/options.py index 22492f2..00f0566 100644 --- a/PC/layout/support/options.py +++ b/PC/layout/support/options.py @@ -63,6 +63,10 @@ PRESETS = { "props" ], }, + "iot": { + "help": "Windows IoT Core", + "options": ["stable", "pip"], + }, "default": { "help": "development kit package", "options": [ |