diff options
| author | Giampaolo Rodola <g.rodola@gmail.com> | 2019-03-28 15:23:28 +0100 |
|---|---|---|
| committer | Giampaolo Rodola <g.rodola@gmail.com> | 2019-03-28 15:23:28 +0100 |
| commit | e19b28f2bd89c047b12f6a8ffb1fe793834700d3 (patch) | |
| tree | 8261b98b29eedb8ce67df4d571e8ba9b948d17ab /Tools/msi/lib | |
| parent | f7868847da9f84cb68605b4b94d8fcc205e0766e (diff) | |
| parent | 3eca28c61363a03b81b9fb12775490d6e42d8ecf (diff) | |
| download | cpython-git-e19b28f2bd89c047b12f6a8ffb1fe793834700d3.tar.gz | |
Merge branch 'master' into bind-socket
Diffstat (limited to 'Tools/msi/lib')
| -rw-r--r-- | Tools/msi/lib/lib_files.wxs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Tools/msi/lib/lib_files.wxs b/Tools/msi/lib/lib_files.wxs index a9952bdac4..251f9b1aeb 100644 --- a/Tools/msi/lib/lib_files.wxs +++ b/Tools/msi/lib/lib_files.wxs @@ -69,6 +69,15 @@ </Fragment> <Fragment> + <!-- The auto-generated directory is not available when building debug binaries --> + <DirectoryRef Id="Lib"> + <Directory Id="Lib_venv__d" Name="venv"> + <Directory Id="Lib_venv_scripts__d" Name="scripts"> + <Directory Id="Lib_venv_scripts_nt__d" Name="nt" /> + </Directory> + </Directory> + </DirectoryRef> + <ComponentGroup Id="lib_extensions_d"> <?foreach ext in $(var.exts)?> @@ -87,6 +96,12 @@ <Component Id="sqlite3_d.pdb" Directory="DLLs" Guid="*"> <File Name="sqlite3_d.pdb" KeyPath="yes" /> </Component> + <Component Id="venvlauncher_d.exe" Directory="Lib_venv_scripts_nt__d" Guid="*"> + <File Name="python_d.exe" Source="venvlauncher_d.exe" KeyPath="yes" /> + </Component> + <Component Id="venvwlauncher_d.exe" Directory="Lib_venv_scripts_nt__d" Guid="*"> + <File Name="pythonw_d.exe" Source="venvwlauncher_d.exe" KeyPath="yes" /> + </Component> </ComponentGroup> </Fragment> <Fragment> |
