mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-05 08:51:19 -05:00
5 lines
223 B
Bash
Executable File
5 lines
223 B
Bash
Executable File
#!/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
|
|
pyside-uic --from-imports example.ui > example_pyside_ui.py |