1
0
mirror of https://github.com/saitohirga/WSJT-X.git synced 2025-07-13 15:15:18 -04:00

6 lines
224 B
Bash
Raw Normal View History

#!/bin/sh
# Compile example.ui for PyQt and PySide.
pyuic4 --from-imports example.ui > example_pyqt_ui.py
pyuic5 --from-imports example.ui > example_pyqt5_ui.py
2015-04-25 14:04:10 +02:00
pyside-uic --from-imports example.ui > example_pyside_ui.py