Skip to content

Instantly share code, notes, and snippets.

View dlon's full-sized avatar

David Lönnhager dlon

View GitHub Profile
@dlon
dlon / build_ui.ps1
Last active February 20, 2019 02:57 — forked from vermiceli/build_ui.ps1
# This is a powershell commandlet equivalent of build_ui.sh for installation on Windows
# Generate python files based on the designer ui files.
# If you need to modify the python location or pyuic5/pyrcc5 path, just change the 2 variables below
$pythonPath = "C:\Python36\"
$pyqtScripts = Join-Path $pythonPath "\Scripts\"
If (!(Test-Path "designer")) {
Write-Host "Please run this from the project root"
Exit