mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-04 08:21:17 -05:00
0e7920eb68
and a compile script for convenience
4 lines
167 B
Bash
Executable File
4 lines
167 B
Bash
Executable File
#!/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 |