mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-25 02:42:28 -04: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 |