WSJT-X/qdarkstyle/compile_qrc.py

39 lines
1.1 KiB
Python
Raw Normal View History

#!/usr/bin/env python
2013-03-10 12:59:50 -04:00
# -*- 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/>.
#
"""
2013-03-10 12:59:50 -04:00
Utility scripts to compile the qrc file. The script will
attempt to compile the qrc file using the following tools:
2013-03-10 12:59:50 -04:00
- 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()