mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-04 08:21:17 -05:00
39 lines
1.1 KiB
Python
Executable File
39 lines
1.1 KiB
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# QDarkStyle - A dark style sheet for Qt applications
|
|
#
|
|
# Copyright 2012, 2013 Colin Duquesnoy <colin.duquesnoy@gmail.com>
|
|
#
|
|
# This software is released under the LGPLv3 license.
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
"""
|
|
Utility scripts to compile the qrc file. The script will
|
|
attempt to compile the qrc file using the following tools:
|
|
- rcc
|
|
- pyside-rcc
|
|
- pyrcc4
|
|
|
|
Delete the compiled files that you don't want to use
|
|
manually after running this script.
|
|
"""
|
|
import os
|
|
|
|
|
|
def compile_all():
|
|
"""
|
|
Compile style.qrc using rcc, pyside-rcc and pyrcc4
|
|
"""
|
|
print("Compiling for Qt: style.qrc -> style.rcc")
|
|
os.system("rcc style.qrc -o style.rcc")
|
|
print("Compiling for PyQt4: style.qrc -> pyqt_style_rc.py")
|
|
os.system("pyrcc4 style.qrc -o pyqt_style_rc.py")
|
|
print("Compiling for PySide: style.qrc -> pyside_style_rc.py")
|
|
os.system("pyside-rcc style.qrc -o pyside_style_rc.py")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
compile_all()
|