From 4fe9a9a81a0ab8bcd0278c81eff275939b1a5aa0 Mon Sep 17 00:00:00 2001 From: ColinDuquesnoy Date: Mon, 17 Feb 2014 15:56:10 +0100 Subject: [PATCH] Rm compilation for Qt: c++ users will compile it themselves as described in the readme --- qdarkstyle/compile_qrc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qdarkstyle/compile_qrc.py b/qdarkstyle/compile_qrc.py index 38251187d..ae4f3e8ef 100755 --- a/qdarkstyle/compile_qrc.py +++ b/qdarkstyle/compile_qrc.py @@ -40,8 +40,8 @@ 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 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 -py3 style.qrc -o pyqt_style_rc.py") print("Compiling for PySide: style.qrc -> pyside_style_rc.py")