This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |