Skip to content

Commit 68281b6

Browse files
committed
feat(Windows): Add bdist_msi Makefile & VSCode targets
1 parent 2be74ea commit 68281b6

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.vscode/tasks.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,20 @@
4444
"panel": "new"
4545
}
4646
},
47+
{
48+
"label": "Run setup.py bdist_msi",
49+
"type": "shell",
50+
"command": "make bdist_msi",
51+
"windows": {
52+
"command": "${command:python.interpreterPath}",
53+
"args": [".\\setup.py", "bdist_msi"]
54+
},
55+
"group": "build",
56+
"presentation": {
57+
"reveal": "always",
58+
"panel": "new"
59+
}
60+
},
4761
{
4862
"label": "Run setup.py bdist_wininst",
4963
"type": "shell",

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ bdist_rpm: build-depends ## Run python setup.py bdist_rpm
3636
bdist_wininst: ## Run python setup.py bdist_wininst
3737
python setup.py bdist_wininst
3838

39+
bdist_msi: ## Run python setup.py bdist_msi
40+
python setup.py bdist_msi
41+
3942
install: ## Runs python setup.py install
4043
python setup.py install
4144

0 commit comments

Comments
 (0)