mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-04 16:31:17 -05:00
4 lines
167 B
Bash
4 lines
167 B
Bash
|
#!/bin/sh
|
||
|
# Compile example.ui for PyQt and PySide.
|
||
|
pyuic4 --from-imports example.ui > example_pyqt_ui.py
|
||
|
pyside-uic --from-imports example.ui > example_pyside_ui.py
|